-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDQuickLTFit.pro
138 lines (121 loc) · 4.24 KB
/
DQuickLTFit.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
# ****************************************************************************
#
# DQuickLTFit, a software for the analysis of Positron-Lifetime Spectra
# based on the Least-Square Optimization using the Levenberg-Marquardt
# Algorithm.
#
# Copyright (C) 2016-2021 Danny Petschke
#
# 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/.
#
# *****************************************************************************
#
# @author: Danny Petschke
# @contact: [email protected]
#
# *****************************************************************************
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
macx {
QMAKE_MAC_SDK = macosx10.11
}
TARGET = DQuickLTFit_4_2
TEMPLATE = app
win32{
RC_FILE = myapp.rc
}
macx{
ICON = myappicon.icns
}
SOURCES += main.cpp\
Settings/projectmanager.cpp \
Settings/projectsettingsmanager.cpp \
Settings/settings.cpp \
Fit/mpfit.c\
Fit/lifetimedecayfit.cpp \
ltfitdlg.cpp \
ltresultdlg.cpp \
ltplotdlg.cpp \
ltparameterlistview.cpp \
ltfitplotresidualview.cpp \
ltcalculatordlg.cpp \
ltlicensetextbox.cpp \
HEADERS += \
Settings/projectmanager.h \
Settings/projectsettingsmanager.h \
Settings/settings.h \
Fit/mpfit.h \
Fit/mpfit_DISCLAIMER \
Fit/lifetimedecayfit.h \
ltfitdlg.h \
ltresultdlg.h \
ltplotdlg.h \
ltparameterlistview.h \
ltfitplotresidualview.h \
ltcalculatordlg.h \
ltlicensetextbox.h \
ltdefines.h
FORMS += \
ltfitdlg.ui \
ltresultdlg.ui \
ltplotdlg.ui \
ltparameterlistview.ui \
ltfitplotresidualview.ui \
ltcalculatordlg.ui \
ltlicensetextbox.ui \
#DLib-import <START>:
#+++++++++++++++++++++++++++++++++++++++++++++++++++++++
QT += xml svg
macx {
QMAKE_MAC_SDK = macosx10.11
}
CONFIG += c++11
HEADERS += DLib/DLib.h\
DLib/DTypes/defines.h\
DLib/DTypes/types.h\
DLib/DXML/simplexml.h\
DLib/DGUI/svgbutton.h\
DLib/DGUI/slider.h\
DLib/DGUI/verticalrangedoubleslider.h\
DLib/DGUI/horizontalrangedoubleslider.h\
DLib/DGUI/constantexplanations.h \
DLib/DGUI/mathconsoletextbox.h \
DLib/DPlot/plot2DXWidget.h\
DLib/DPlot/plot2DXCurve.h\
DLib/DPlot/plot2DXAxis.h\
DLib/DPlot/plot2DXCanvas.h\
DLib/DCompression/compressionwrapper.h
SOURCES += DLib/DTypes/defines.cpp\
DLib/DTypes/types.cpp\
DLib/DXML/simplexml.cpp\
DLib/DGUI/svgbutton.cpp\
DLib/DGUI/slider.cpp\
DLib/DGUI/verticalrangedoubleslider.cpp\
DLib/DGUI/horizontalrangedoubleslider.cpp\
DLib/DGUI/constantexplanations.cpp \
DLib/DGUI/mathconsoletextbox.cpp \
DLib/DPlot/plot2DXWidget.cpp\
DLib/DPlot/plot2DXCurve.cpp\
DLib/DPlot/plot2DXAxis.cpp\
DLib/DPlot/plot2DXCanvas.cpp\
DLib/DCompression/miniz.c\
DLib/DCompression/compressionwrapper.cpp
FORMS += DLib/DGUI/horizontalrangedoubleslider.ui\
DLib/DGUI/verticalrangedoubleslider.ui
RESOURCES += \
DLib/DResources/res.qrc \
Images.qrc \
license.qrc
#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#DLib-import <END>: