-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathOMSens_Qt.pro
121 lines (106 loc) · 3.76 KB
/
OMSens_Qt.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
#-------------------------------------------------
#
# Project created by QtCreator 2018-10-04T10:55:18
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
# Vars if standalone app
# TARGET = OMSens_Qt
# TEMPLATE = app
# Vars if plugin
TEMPLATE = lib
TARGET = $$qtLibraryTarget(omsensplugin)
# 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
SOURCES += \
dialogs/general/CSVViewerDialog.cpp \
dialogs/general/ImageViewerDialog.cpp \
dialogs/indiv/IndivParamSensAnalysisDialog.cpp \
dialogs/indiv/IndivSensAnalTypeDialog.cpp \
dialogs/indiv/IndivSensResultsDialog.cpp \
dialogs/sweep/MultiParamSweepDialog.cpp \
dialogs/sweep/SweepResultDialog.cpp \
dialogs/vect/VectorialParamSensAnalysisDialog.cpp \
dialogs/vect/VectorialResultsDialog.cpp \
tabs/HelpTab.cpp \
tabs/OptimizationTab.cpp \
tabs/ParametersExtendedTab.cpp \
tabs/ParametersSimpleTab.cpp \
tabs/SensitivityMethodResultsTab.cpp \
tabs/SimulationTab.cpp \
tabs/VariablesTab.cpp \
DualLists.cpp \
main.cpp \
OMSensDialog.cpp \
tabs/optim_result/OptimizationResultParametersTab.cpp \
tabs/optim_result/OptimizationResultOtherTab.cpp \
tabs/sweep_result/SweepResultVariableTab.cpp \
dialogs/help/HelpBrowser.cpp \
tabs/PerturbationTab.cpp \
specs/IndivSpecs.cpp \
specs/SweepSpecs.cpp \
specs/VectSpecs.cpp \
OMSensPlugin.cpp \
omedit_plugin/model.cpp
HEADERS += \
dialogs/general/CSVViewerDialog.h \
dialogs/general/ImageViewerDialog.h \
dialogs/indiv/IndivParamSensAnalysisDialog.h \
dialogs/indiv/IndivSensAnalTypeDialog.h \
dialogs/indiv/IndivSensResultsDialog.h \
dialogs/sweep/MultiParamSweepDialog.h \
dialogs/sweep/SweepResultDialog.h \
dialogs/vect/VectorialParamSensAnalysisDialog.h \
dialogs/vect/VectorialResultsDialog.h \
tabs/HelpTab.h \
tabs/OptimizationTab.h \
tabs/ParametersExtendedTab.h \
tabs/ParametersSimpleTab.h \
tabs/SensitivityMethodResultsTab.h \
tabs/SimulationTab.h \
tabs/VariablesTab.h \
DualLists.h \
OMSensDialog.h \
TableItemDelegate.h \
tabs/optim_result/OptimizationResultParametersTab.h \
tabs/optim_result/OptimizationResultOtherTab.h \
dialogs/BaseRunSpecsDialog.h \
dialogs/BaseResultsDialog.h \
tabs/sweep_result/SweepResultVariableTab.h \
dialogs/help/HelpBrowser.h \
tabs/PerturbationTab.h \
ForceSignDoubleSpinbox.h \
SciNotationDoubleSpinbox.h \
specs/IndivSpecs.h \
specs/RunSpecifications.h \
specs/VectSpecs.h \
OMSensPlugin.h \
omedit_plugin/model.h
DISTFILES += \
resource/ModelWithVariousParams.mo \
dialogs/indiv/help.html \
dialogs/sweep/help.html \
dialogs/vect/help.html \
resource/help/help.html
RESOURCES += \
resources.qrc
DESTDIR = bin
UI_DIR = generatedfiles/ui
MOC_DIR = generatedfiles/moc
RCC_DIR = generatedfiles/rcc
win32 {
_cxx = $$(CXX)
contains(_cxx, clang++) {
message("Found clang++ on windows in $CXX, removing unknown flags: -fno-keep-inline-dllexport")
QMAKE_CFLAGS -= -fno-keep-inline-dllexport
QMAKE_CXXFLAGS -= -fno-keep-inline-dllexport
}
}