OSCAR-code/sleepyhead/sleepyhead.pro

307 lines
7.6 KiB
Prolog
Raw Normal View History

#-------------------------------------------------
#
# Project created by QtCreator 2011-06-20T22:05:30
#
#-------------------------------------------------
QT += core gui network xml printsupport serialport
greaterThan(QT_MAJOR_VERSION,4) {
QT += widgets webkitwidgets
} else { # qt4
QT += webkit
}
#SleepyHead requires OpenGL 2.0 support to run smoothly
#On platforms where it's not available, it can still be built to work
#provided the BrokenGL DEFINES flag is passed to qmake (eg, qmake [specs] /path/to/SleepyHeadQT.pro DEFINES+=BrokenGL)
contains(DEFINES, BrokenGL) {
message("Building with QWidget gGraphView")
DEFINES += BROKEN_OPENGL_BUILD
} else:contains(DEFINES, NoGL) {
message("Building with QWidget gGraphView (No GL at all)")
DEFINES += BROKEN_OPENGL_BUILD
DEFINES += NO_OPENGL_BUILD
} else {
message("Building with QGLWidget gGraphView")
}
QT += opengl
2018-04-22 12:06:48 +00:00
#ResMed summary data design is SHIT... SleepyHead *MUST* follow ResMed's idiocy.
DEFINES += LOCK_RESMED_SESSIONS
2018-05-05 09:21:57 +00:00
CONFIG += c++11
2014-04-24 09:44:15 +00:00
CONFIG += rtti
#static {
# CONFIG += static
# QTPLUGIN += qsvg qgif qpng
# DEFINES += STATIC // Equivalent to "#define STATIC" in source code
# message("Static build.")
#}
TARGET = SleepyHead
unix:!macx:!haiku {
TARGET.path=/usr/bin
}
TEMPLATE = app
# GIT_VERSION = $$system(git describe --tags --long --abbrev=6 --dirty="*")
exists(../.git):{
2013-10-18 05:32:58 +00:00
GIT_BRANCH=$$system(git rev-parse --abbrev-ref HEAD)
2013-10-18 06:05:42 +00:00
DEFINES += GIT_BRANCH=\\\"$$GIT_BRANCH\\\"
DEFINES += GIT_REVISION="\\\"$(shell git -C \""$$_PRO_FILE_PWD_"\" rev-parse --short HEAD)\\\""
# contains(GIT_BRANCH,"testing"):
2013-10-18 05:09:52 +00:00
} else {
DEFINES += GIT_BRANCH=\\\"UNKNOWN\\\"
DEFINES += GIT_REVISION=\\\"UNKNOWN\\\"
}
#Comment out for official builds
DEFINES += BETA_BUILD
unix:!macx:!haiku {
LIBS += -lX11 -lz -lGLU
2013-10-10 02:22:58 +00:00
DEFINES += _TTY_POSIX_
}
macx {
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.7
LIBS += -lz
ICON = icons/iconfile.icns
}
haiku {
LIBS += -lz -lGLU
DEFINES += _TTY_POSIX_
}
win32 {
2014-05-09 07:05:54 +00:00
DEFINES += WINVER=0x0501 # needed for mingw to pull in appropriate dbt business...probably a better way to do this
RC_FILE += win_icon.rc
LIBS += -lsetupapi
INCLUDEPATH += $$PWD
INCLUDEPATH += $$[QT_INSTALL_PREFIX]/../src/qtbase/src/3rdparty/zlib
if (*-msvc*):!equals(TEMPLATE_PREFIX, "vc") {
LIBS += -ladvapi32
DEFINES += BUILD_WITH_MSVC=1
} else {
# MingW needs this
LIBS += -lz
}
}
SOURCES += \
common_gui.cpp \
daily.cpp \
exportcsv.cpp \
main.cpp \
mainwindow.cpp \
newprofile.cpp \
overview.cpp \
preferencesdialog.cpp \
profileselect.cpp \
reports.cpp \
sessionbar.cpp \
updateparser.cpp \
UpdaterWindow.cpp \
Graphs/gFlagsLine.cpp \
Graphs/gFooBar.cpp \
Graphs/gGraph.cpp \
Graphs/gGraphView.cpp \
Graphs/glcommon.cpp \
Graphs/gLineChart.cpp \
Graphs/gLineOverlay.cpp \
Graphs/gSegmentChart.cpp \
Graphs/gspacer.cpp \
Graphs/gStatsLine.cpp \
Graphs/gSummaryChart.cpp \
Graphs/gXAxis.cpp \
Graphs/gYAxis.cpp \
Graphs/layer.cpp \
SleepLib/calcs.cpp \
SleepLib/common.cpp \
SleepLib/day.cpp \
SleepLib/event.cpp \
SleepLib/machine.cpp \
SleepLib/machine_loader.cpp \
SleepLib/preferences.cpp \
SleepLib/profiles.cpp \
SleepLib/schema.cpp \
SleepLib/session.cpp \
SleepLib/loader_plugins/cms50_loader.cpp \
SleepLib/loader_plugins/icon_loader.cpp \
SleepLib/loader_plugins/intellipap_loader.cpp \
SleepLib/loader_plugins/mseries_loader.cpp \
SleepLib/loader_plugins/prs1_loader.cpp \
SleepLib/loader_plugins/resmed_loader.cpp \
SleepLib/loader_plugins/somnopose_loader.cpp \
2014-04-24 09:44:15 +00:00
SleepLib/loader_plugins/zeo_loader.cpp \
translation.cpp \
2014-05-25 07:07:08 +00:00
statistics.cpp \
2014-05-25 16:20:33 +00:00
oximeterimport.cpp \
SleepLib/serialoximeter.cpp \
SleepLib/loader_plugins/md300w1_loader.cpp \
2014-06-20 07:05:40 +00:00
Graphs/gSessionTimesChart.cpp \
logger.cpp \
SleepLib/machine_common.cpp \
SleepLib/loader_plugins/weinmann_loader.cpp \
2014-08-11 18:29:44 +00:00
Graphs/gdailysummary.cpp \
2014-08-17 12:56:05 +00:00
Graphs/MinutesAtPressure.cpp \
2014-08-17 15:55:40 +00:00
SleepLib/journal.cpp \
2014-08-17 23:29:30 +00:00
SleepLib/progressdialog.cpp \
2018-04-22 12:06:48 +00:00
SleepLib/loader_plugins/cms50f37_loader.cpp \
2018-04-25 15:22:29 +00:00
profileselector.cpp \
SleepLib/loader_plugins/edfparser.cpp \
aboutdialog.cpp \
welcome.cpp
HEADERS += \
common_gui.h \
daily.h \
exportcsv.h \
mainwindow.h \
newprofile.h \
overview.h \
preferencesdialog.h \
profileselect.h \
reports.h \
sessionbar.h \
updateparser.h \
UpdaterWindow.h \
version.h \
Graphs/gFlagsLine.h \
Graphs/gFooBar.h \
Graphs/gGraph.h \
Graphs/gGraphView.h \
Graphs/glcommon.h \
Graphs/gLineChart.h \
Graphs/gLineOverlay.h \
Graphs/gSegmentChart.h\
Graphs/gspacer.h \
Graphs/gStatsLine.h \
Graphs/gSummaryChart.h \
Graphs/gXAxis.h \
Graphs/gYAxis.h \
Graphs/layer.h \
SleepLib/calcs.h \
SleepLib/common.h \
SleepLib/day.h \
SleepLib/event.h \
SleepLib/machine.h \
SleepLib/machine_common.h \
SleepLib/machine_loader.h \
SleepLib/preferences.h \
SleepLib/profiles.h \
SleepLib/schema.h \
SleepLib/session.h \
SleepLib/loader_plugins/cms50_loader.h \
SleepLib/loader_plugins/icon_loader.h \
SleepLib/loader_plugins/intellipap_loader.h \
SleepLib/loader_plugins/mseries_loader.h \
SleepLib/loader_plugins/prs1_loader.h \
SleepLib/loader_plugins/resmed_loader.h \
SleepLib/loader_plugins/somnopose_loader.h \
2014-04-24 09:44:15 +00:00
SleepLib/loader_plugins/zeo_loader.h \
translation.h \
2014-05-25 07:07:08 +00:00
statistics.h \
2014-05-25 16:20:33 +00:00
oximeterimport.h \
SleepLib/serialoximeter.h \
SleepLib/loader_plugins/md300w1_loader.h \
2014-06-20 07:05:40 +00:00
Graphs/gSessionTimesChart.h \
logger.h \
SleepLib/loader_plugins/weinmann_loader.h \
2014-08-11 18:29:44 +00:00
Graphs/gdailysummary.h \
2014-08-17 12:56:05 +00:00
Graphs/MinutesAtPressure.h \
2014-08-17 15:55:40 +00:00
SleepLib/journal.h \
2014-08-17 23:29:30 +00:00
SleepLib/progressdialog.h \
SleepLib/loader_plugins/cms50f37_loader.h \
2018-04-22 12:06:48 +00:00
build_number.h \
profileselector.h \
2018-04-25 15:22:29 +00:00
SleepLib/appsettings.h \
SleepLib/loader_plugins/edfparser.h \
aboutdialog.h \
welcome.h
FORMS += \
daily.ui \
overview.ui \
mainwindow.ui \
oximetry.ui \
preferencesdialog.ui \
report.ui \
profileselect.ui \
newprofile.ui \
exportcsv.ui \
2014-05-25 07:07:08 +00:00
UpdaterWindow.ui \
2018-04-22 12:06:48 +00:00
oximeterimport.ui \
profileselector.ui \
aboutdialog.ui \
welcome.ui
RESOURCES += \
Resources.qrc
OTHER_FILES += \
docs/index.html \
docs/usage.html \
docs/schema.xml \
docs/graphs.xml \
docs/channels.xml \
docs/release_notes.html \
docs/startup_tips.txt \
docs/countries.txt \
docs/tz.txt \
../LICENSE.txt \
docs/tooltips.css \
docs/script.js \
../update.xml \
docs/changelog.txt \
docs/intro.html \
docs/statistics.xml
win32 {
CONFIG(debug, debug|release) {
DDIR = $$OUT_PWD/debug/Translations
}
CONFIG(release, debug|release) {
DDIR = $$OUT_PWD/release/Translations
}
DDIR ~= s,/,\\,g
TRANS_FILES += $$PWD/../Translations/*.qm
TRANS_FILES_WIN = $${TRANS_FILES}
TRANS_FILES_WIN ~= s,/,\\,g
system(mkdir $$quote($$DDIR))
for(FILE,TRANS_FILES_WIN){
system(xcopy /y $$quote($$FILE) $$quote($$DDIR))
}
}
mac {
TransFiles.files = $$files(../Translations/*.qm)
TransFiles.path = Contents/Resources/Translations
QMAKE_BUNDLE_DATA += TransFiles
}
#include(../3rdparty/quazip/quazip/quazip.pri)
#INCLUDEPATH += $$PWD/../3rdparty/quazip
#DEPENDPATH += $$PWD/../3rdparty/quazip
DISTFILES += \
../README