-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSTIGQter.pro
146 lines (130 loc) · 4.13 KB
/
STIGQter.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#-------------------------------------------------
#
# Project created by QtCreator 2018-11-04T19:47:11
#
# STIGQter - STIG fun with Qt
#
# Copyright © 2018–2023 Jon Hood, http://www.hoodsecurity.com/
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#-------------------------------------------------
QT += core gui network sql xml
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = STIGQter
TEMPLATE = app
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
CONFIG += c++1z
SOURCES += \
src/asset.cpp \
src/assetview.cpp \
src/cci.cpp \
src/cklcheck.cpp \
src/common.cpp \
src/control.cpp \
src/dbmanager.cpp \
src/family.cpp \
src/help.cpp \
src/main.cpp \
src/stig.cpp \
src/stigcheck.cpp \
src/stigedit.cpp \
src/stigqter.cpp \
src/supplement.cpp \
src/tabviewwidget.cpp \
src/worker.cpp \
src/workerassetadd.cpp \
src/workerassetdelete.cpp \
src/workercciadd.cpp \
src/workerccidelete.cpp \
src/workercheckversion.cpp \
src/workerckl.cpp \
src/workercklexport.cpp \
src/workercklimport.cpp \
src/workercklupgrade.cpp \
src/workercmrsexport.cpp \
src/workeremassreport.cpp \
src/workerfindingsreport.cpp \
src/workerhtml.cpp \
src/workerimportemass.cpp \
src/workerimportemasscontrol.cpp \
src/workermapunmapped.cpp \
src/workerpoamreport.cpp \
src/workerstigadd.cpp \
src/workerstigdelete.cpp \
src/workerstigdownload.cpp
HEADERS += \
src/asset.h \
src/assetview.h \
src/cci.h \
src/cklcheck.h \
src/common.h \
src/control.h \
src/dbmanager.h \
src/family.h \
src/help.h \
src/stig.h \
src/stigcheck.h \
src/stigedit.h \
src/stigqter.h \
src/supplement.h \
src/tabviewwidget.h \
src/worker.h \
src/workerassetadd.h \
src/workerassetdelete.h \
src/workercciadd.h \
src/workerccidelete.h \
src/workercheckversion.h \
src/workerckl.h \
src/workercklexport.h \
src/workercklimport.h \
src/workercklupgrade.h \
src/workercmrsexport.h \
src/workeremassreport.h \
src/workerfindingsreport.h \
src/workerhtml.h \
src/workerimportemass.h \
src/workerimportemasscontrol.h \
src/workermapunmapped.h \
src/workerpoamreport.h \
src/workerstigadd.h \
src/workerstigdelete.h \
src/workerstigdownload.h
FORMS += \
src/assetview.ui \
src/help.ui \
src/stigedit.ui \
src/stigqter.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = $${PREFIX}/bin
!isEmpty(target.path): INSTALLS += target
LIBS += -lzip -lxlsxwriter -lz
INCLUDEPATH = src
RC_FILE = STIGQter.rc
DISTFILES += \
tests/emassTRImport.xlsx
resources.files = \
src/U_CCI_List.xml \
src/800-53-rev4-controls.xml
resources.prefix = /dod
RESOURCES = resources