2013-09-26 22:52:41 +00:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2011-06-20T22:05:30
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
2014-09-24 01:42:14 +00:00
|
|
|
QT += core gui network xml printsupport
|
2013-09-26 22:52:41 +00:00
|
|
|
|
|
|
|
greaterThan(QT_MAJOR_VERSION,4) {
|
|
|
|
QT += widgets webkitwidgets
|
2013-10-09 15:42:46 +00:00
|
|
|
} else { # qt4
|
2013-09-26 22:52:41 +00:00
|
|
|
QT += webkit
|
|
|
|
}
|
|
|
|
|
2014-06-02 17:55:59 +00:00
|
|
|
#SleepyHead requires OpenGL 2.0 support to run smoothly
|
|
|
|
#On platforms where it's not available, it can still be built to work
|
2015-07-30 22:36:52 +00:00
|
|
|
#provided the BrokenGL DEFINES flag is passed to qmake (eg, qmake [specs] /path/to/SleepyHeadQT.pro DEFINES+=BrokenGL)
|
2014-08-25 03:02:16 +00:00
|
|
|
contains(DEFINES, BrokenGL) {
|
2014-05-16 14:08:16 +00:00
|
|
|
message("Building with QWidget gGraphView")
|
2014-08-25 03:02:16 +00:00
|
|
|
DEFINES += BROKEN_OPENGL_BUILD
|
2016-01-05 06:06:32 +00:00
|
|
|
} else:contains(DEFINES, NoGL) {
|
|
|
|
message("Building with QWidget gGraphView (No GL at all)")
|
|
|
|
DEFINES += BROKEN_OPENGL_BUILD
|
|
|
|
DEFINES += NO_OPENGL_BUILD
|
2014-05-16 14:08:16 +00:00
|
|
|
} else {
|
|
|
|
message("Building with QGLWidget gGraphView")
|
|
|
|
}
|
2014-10-02 10:02:33 +00:00
|
|
|
QT += opengl
|
2014-05-16 14:08:16 +00:00
|
|
|
|
2014-07-21 16:14:07 +00:00
|
|
|
#The following forces ResMed session locking.. it *may* not be necessary.. I'm still trying to assess this properly.
|
2015-07-30 22:36:52 +00:00
|
|
|
#Blah blah.. this isn't connected anymore.. just leaving it until I have the energy to clean it up
|
2014-07-21 16:14:07 +00:00
|
|
|
DEFINES += LOCK_RESMED_SESSIONS
|
|
|
|
|
2014-05-06 17:39:05 +00:00
|
|
|
#CONFIG += c++11
|
2014-04-24 09:44:15 +00:00
|
|
|
CONFIG += rtti
|
|
|
|
|
2013-09-26 22:52:41 +00:00
|
|
|
#static {
|
|
|
|
# CONFIG += static
|
|
|
|
# QTPLUGIN += qsvg qgif qpng
|
|
|
|
|
|
|
|
# DEFINES += STATIC // Equivalent to "#define STATIC" in source code
|
|
|
|
# message("Static build.")
|
|
|
|
#}
|
|
|
|
|
|
|
|
TARGET = SleepyHead
|
2016-01-05 06:06:32 +00:00
|
|
|
unix:!macx:!haiku {
|
2013-09-26 22:52:41 +00:00
|
|
|
TARGET.path=/usr/bin
|
|
|
|
}
|
|
|
|
|
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
# GIT_VERSION = $$system(git describe --tags --long --abbrev=6 --dirty="*")
|
|
|
|
|
2013-10-18 04:56:44 +00:00
|
|
|
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\\\"
|
2016-02-28 09:21:38 +00:00
|
|
|
# DEFINES += GIT_REVISION=\\\"$$system(git rev-parse --short HEAD)\\\"
|
|
|
|
DEFINES += GIT_REVISION="\\\"$(shell git -C \""$$_PRO_FILE_PWD_"\" rev-parse --short HEAD)\\\""
|
2013-10-18 04:56:44 +00:00
|
|
|
|
2014-05-04 18:02:41 +00:00
|
|
|
# contains(GIT_BRANCH,"testing"):
|
2013-10-18 04:56:44 +00:00
|
|
|
|
2013-10-18 05:09:52 +00:00
|
|
|
} else {
|
2013-10-18 04:56:44 +00:00
|
|
|
DEFINES += GIT_BRANCH=\\\"UNKNOWN\\\"
|
|
|
|
DEFINES += GIT_REVISION=\\\"UNKNOWN\\\"
|
|
|
|
}
|
|
|
|
|
2014-05-04 18:02:41 +00:00
|
|
|
#Comment out for official builds
|
2016-03-03 13:26:08 +00:00
|
|
|
DEFINES += BETA_BUILD
|
2013-09-26 22:52:41 +00:00
|
|
|
|
|
|
|
|
2016-01-05 06:06:32 +00:00
|
|
|
unix:!macx:!haiku {
|
2013-10-10 02:22:58 +00:00
|
|
|
LIBS += -lX11 -lz -lGLU
|
|
|
|
DEFINES += _TTY_POSIX_
|
|
|
|
}
|
2013-09-26 22:52:41 +00:00
|
|
|
|
|
|
|
macx {
|
2015-09-18 09:05:06 +00:00
|
|
|
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.6
|
2014-05-06 17:39:05 +00:00
|
|
|
|
2013-10-09 15:42:46 +00:00
|
|
|
LIBS += -lz
|
2013-10-11 11:41:49 +00:00
|
|
|
ICON = icons/iconfile.icns
|
2013-09-26 22:52:41 +00:00
|
|
|
}
|
|
|
|
|
2016-01-05 06:06:32 +00:00
|
|
|
haiku {
|
|
|
|
LIBS += -lz -lGLU
|
|
|
|
DEFINES += _TTY_POSIX_
|
|
|
|
}
|
|
|
|
|
2013-09-26 22:52:41 +00:00
|
|
|
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
|
|
|
|
}
|
2014-07-09 03:49:20 +00:00
|
|
|
}
|
|
|
|
|
2013-09-26 22:52:41 +00:00
|
|
|
#include(3rdparty/quazip-0.5.1/quazip/quazip.pri)
|
|
|
|
|
|
|
|
#include(SleepLib2/sleeplib.pri)
|
|
|
|
|
2014-04-23 17:20:38 +00:00
|
|
|
SOURCES += \
|
|
|
|
common_gui.cpp \
|
2013-09-26 22:52:41 +00:00
|
|
|
daily.cpp \
|
2014-04-23 17:20:38 +00:00
|
|
|
exportcsv.cpp \
|
|
|
|
main.cpp \
|
|
|
|
mainwindow.cpp \
|
|
|
|
newprofile.cpp \
|
2013-09-26 22:52:41 +00:00
|
|
|
overview.cpp \
|
2014-04-23 17:20:38 +00:00
|
|
|
preferencesdialog.cpp \
|
|
|
|
profileselect.cpp \
|
|
|
|
reports.cpp \
|
|
|
|
sessionbar.cpp \
|
|
|
|
updateparser.cpp \
|
|
|
|
UpdaterWindow.cpp \
|
2013-09-26 22:52:41 +00:00
|
|
|
Graphs/gFlagsLine.cpp \
|
2014-04-23 17:20:38 +00:00
|
|
|
Graphs/gFooBar.cpp \
|
|
|
|
Graphs/gGraph.cpp \
|
|
|
|
Graphs/gGraphView.cpp \
|
2013-09-26 22:52:41 +00:00
|
|
|
Graphs/glcommon.cpp \
|
2014-04-23 17:20:38 +00:00
|
|
|
Graphs/gLineChart.cpp \
|
|
|
|
Graphs/gLineOverlay.cpp \
|
2013-09-26 22:52:41 +00:00
|
|
|
Graphs/gSegmentChart.cpp \
|
2014-04-23 17:20:38 +00:00
|
|
|
Graphs/gspacer.cpp \
|
2013-09-26 22:52:41 +00:00
|
|
|
Graphs/gStatsLine.cpp \
|
|
|
|
Graphs/gSummaryChart.cpp \
|
2014-04-23 17:20:38 +00:00
|
|
|
Graphs/gXAxis.cpp \
|
|
|
|
Graphs/gYAxis.cpp \
|
|
|
|
Graphs/layer.cpp \
|
2013-09-26 22:52:41 +00:00
|
|
|
SleepLib/calcs.cpp \
|
|
|
|
SleepLib/common.cpp \
|
2014-04-23 17:20:38 +00:00
|
|
|
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 \
|
2013-09-26 22:52:41 +00:00
|
|
|
SleepLib/loader_plugins/icon_loader.cpp \
|
2014-04-23 17:20:38 +00:00
|
|
|
SleepLib/loader_plugins/intellipap_loader.cpp \
|
2013-09-26 22:52:41 +00:00
|
|
|
SleepLib/loader_plugins/mseries_loader.cpp \
|
2014-04-23 17:20:38 +00:00
|
|
|
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 \
|
2014-04-25 05:28:10 +00:00
|
|
|
translation.cpp \
|
2014-05-25 07:07:08 +00:00
|
|
|
statistics.cpp \
|
2014-05-25 16:20:33 +00:00
|
|
|
oximeterimport.cpp \
|
2014-05-28 09:35:21 +00:00
|
|
|
SleepLib/serialoximeter.cpp \
|
2014-05-31 21:25:07 +00:00
|
|
|
SleepLib/loader_plugins/md300w1_loader.cpp \
|
2014-06-20 07:05:40 +00:00
|
|
|
Graphs/gSessionTimesChart.cpp \
|
2014-07-25 07:53:48 +00:00
|
|
|
logger.cpp \
|
2014-08-03 13:00:13 +00:00
|
|
|
welcome.cpp \
|
|
|
|
SleepLib/machine_common.cpp \
|
2014-08-09 17:12:37 +00:00
|
|
|
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 \
|
|
|
|
SleepLib/loader_plugins/cms50f37_loader.cpp
|
2013-09-26 22:52:41 +00:00
|
|
|
|
|
|
|
HEADERS += \
|
2014-04-23 17:20:38 +00:00
|
|
|
common_gui.h \
|
2013-09-26 22:52:41 +00:00
|
|
|
daily.h \
|
2014-04-23 17:20:38 +00:00
|
|
|
exportcsv.h \
|
2013-09-26 22:52:41 +00:00
|
|
|
mainwindow.h \
|
2014-04-23 17:20:38 +00:00
|
|
|
newprofile.h \
|
|
|
|
overview.h \
|
|
|
|
preferencesdialog.h \
|
|
|
|
profileselect.h \
|
|
|
|
reports.h \
|
|
|
|
sessionbar.h \
|
|
|
|
updateparser.h \
|
|
|
|
UpdaterWindow.h \
|
|
|
|
version.h \
|
2013-09-26 22:52:41 +00:00
|
|
|
Graphs/gFlagsLine.h \
|
2014-04-23 17:20:38 +00:00
|
|
|
Graphs/gFooBar.h \
|
|
|
|
Graphs/gGraph.h \
|
|
|
|
Graphs/gGraphView.h \
|
2013-09-26 22:52:41 +00:00
|
|
|
Graphs/glcommon.h \
|
2014-04-23 17:20:38 +00:00
|
|
|
Graphs/gLineChart.h \
|
|
|
|
Graphs/gLineOverlay.h \
|
2013-09-26 22:52:41 +00:00
|
|
|
Graphs/gSegmentChart.h\
|
2014-04-23 17:20:38 +00:00
|
|
|
Graphs/gspacer.h \
|
2013-09-26 22:52:41 +00:00
|
|
|
Graphs/gStatsLine.h \
|
|
|
|
Graphs/gSummaryChart.h \
|
2014-04-23 17:20:38 +00:00
|
|
|
Graphs/gXAxis.h \
|
|
|
|
Graphs/gYAxis.h \
|
|
|
|
Graphs/layer.h \
|
2013-09-26 22:52:41 +00:00
|
|
|
SleepLib/calcs.h \
|
|
|
|
SleepLib/common.h \
|
2014-04-23 17:20:38 +00:00
|
|
|
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 \
|
2013-09-26 22:52:41 +00:00
|
|
|
SleepLib/loader_plugins/icon_loader.h \
|
2014-04-23 17:20:38 +00:00
|
|
|
SleepLib/loader_plugins/intellipap_loader.h \
|
2013-09-26 22:52:41 +00:00
|
|
|
SleepLib/loader_plugins/mseries_loader.h \
|
2014-04-23 17:20:38 +00:00
|
|
|
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 \
|
2014-04-25 05:28:10 +00:00
|
|
|
translation.h \
|
2014-05-25 07:07:08 +00:00
|
|
|
statistics.h \
|
2014-05-25 16:20:33 +00:00
|
|
|
oximeterimport.h \
|
2014-05-28 09:35:21 +00:00
|
|
|
SleepLib/serialoximeter.h \
|
2014-05-31 21:25:07 +00:00
|
|
|
SleepLib/loader_plugins/md300w1_loader.h \
|
2014-06-20 07:05:40 +00:00
|
|
|
Graphs/gSessionTimesChart.h \
|
2014-08-03 13:00:13 +00:00
|
|
|
logger.h \
|
2014-08-09 17:12:37 +00:00
|
|
|
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 \
|
2014-08-23 06:21:50 +00:00
|
|
|
SleepLib/loader_plugins/cms50f37_loader.h \
|
|
|
|
build_number.h
|
|
|
|
|
2014-04-23 17:20:38 +00:00
|
|
|
FORMS += \
|
2013-09-26 22:52:41 +00:00
|
|
|
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 \
|
|
|
|
oximeterimport.ui
|
2013-09-26 22:52:41 +00:00
|
|
|
|
|
|
|
RESOURCES += \
|
2014-06-15 23:56:06 +00:00
|
|
|
Resources.qrc
|
2013-09-26 22:52:41 +00:00
|
|
|
|
|
|
|
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 \
|
2013-10-10 17:36:53 +00:00
|
|
|
../LICENSE.txt \
|
2013-09-26 22:52:41 +00:00
|
|
|
docs/tooltips.css \
|
|
|
|
docs/script.js \
|
2013-10-10 17:36:53 +00:00
|
|
|
../update.xml \
|
2013-09-26 22:52:41 +00:00
|
|
|
docs/changelog.txt \
|
2014-05-06 09:11:31 +00:00
|
|
|
docs/intro.html \
|
|
|
|
docs/statistics.xml
|
2013-09-26 22:52:41 +00:00
|
|
|
|
2014-06-15 23:56:06 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2014-08-27 18:12:14 +00:00
|
|
|
#!win32 {
|
|
|
|
# include(../3rdparty/qtserialport/src/serialport/serialport-lib.pri)
|
|
|
|
# INCLUDEPATH += $$PWD/../3rdparty/qtserialport/include/QtSerialPort/5.3.1/QtSerialPort
|
|
|
|
# DEPENDPATH += $$PWD/../3rdparty/qtserialport/include/QtSerialPort/5.3.1/QtSerialPort
|
|
|
|
#} else {
|
2014-08-25 02:55:01 +00:00
|
|
|
QT += serialport
|
2014-08-27 18:12:14 +00:00
|
|
|
#}
|
2014-08-25 02:55:01 +00:00
|
|
|
|
|
|
|
include(../3rdparty/quazip/quazip/quazip.pri)
|
|
|
|
INCLUDEPATH += $$PWD/../3rdparty/quazip
|
|
|
|
DEPENDPATH += $$PWD/../3rdparty/quazip
|
|
|
|
|
|
|
|
#bundlelibs = $$cat($$PWD/../Bundle3rdParty)
|
|
|
|
|
|
|
|
#contains(bundlelibs, true) {
|
|
|
|
# include(../3rdparty/quazip/quazip/quazip.pri)
|
|
|
|
# INCLUDEPATH += $$PWD/../3rdparty/quazip
|
|
|
|
# DEPENDPATH += $$PWD/../3rdparty/quazip
|
|
|
|
|
|
|
|
# !win32 {
|
|
|
|
# include(../3rdparty/qtserialport/src/serialport/serialport-lib.pri)
|
|
|
|
# INCLUDEPATH += $$PWD/../3rdparty/qtserialport/include/QtSerialPort/5.3.1/QtSerialPort
|
|
|
|
# DEPENDPATH += $$PWD/../3rdparty/qtserialport/include/QtSerialPort/5.3.1/QtSerialPort
|
|
|
|
# # DEPENDPATH += $$PWD/../3rdparty/qtserialport/src/serialport/include/QtSerialPort/5.3.1
|
|
|
|
# }
|
|
|
|
#} else {
|
|
|
|
# unix {
|
|
|
|
# message("Attempting to build with system quazip.");
|
|
|
|
# QMAKE_LFLAGS += -L/usr/lib -L/usr/local/lib
|
|
|
|
# INCLUDEPATH += /usr/local/include
|
|
|
|
# INCLUDEPATH += /usr/include
|
|
|
|
# DEPENDPATH += /usr/local/include/quazip
|
|
|
|
# DEPENDPATH += /usr/include/quazip
|
|
|
|
# } else {
|
|
|
|
# #Configure it if you need it...
|
|
|
|
# warning("Building with externally linked quazip is unsupported on this platform");
|
|
|
|
# }
|
|
|
|
# LIBS += -lquazip
|
|
|
|
#}
|
2016-04-15 01:15:07 +00:00
|
|
|
|
|
|
|
DISTFILES += \
|
|
|
|
../README
|