OSCAR-code/SleepyHeadQT.pro

216 lines
5.2 KiB
Prolog
Raw Normal View History

2011-06-26 08:30:44 +00:00
#-------------------------------------------------
#
# Project created by QtCreator 2011-06-20T22:05:30
#
#-------------------------------------------------
2011-09-06 07:33:34 +00:00
QT += core gui webkit opengl network xml
2011-06-26 08:30:44 +00:00
CONFIG += rtti
2011-06-26 11:49:40 +00:00
#static {
# CONFIG += static
# QTPLUGIN += qsvg qgif
# DEFINES += STATIC // Equivalent to "#define STATIC" in source code
# message("Static build.")
#}
2011-06-26 08:30:44 +00:00
#CONFIG += link_pkgconfig
#PKGCONFIG += freetype2
2011-09-02 02:00:04 +00:00
TARGET = SleepyHead
2012-01-29 04:17:02 +00:00
unix:!macx {
TARGET.path=/usr/bin
}
2011-06-26 08:30:44 +00:00
TEMPLATE = app
# GIT_VERSION = $$system(git describe --tags --long --abbrev=6 --dirty="*")
#exists(.git):DEFINES += GIT_BRANCH=\\\"$$system(git rev-parse --symbolic-full-name --abbrev-ref HEAD)\\\"
exists(.git):DEFINES += GIT_BRANCH=\\\"$$system(git rev-parse --abbrev-ref HEAD)\\\"
2012-11-12 07:24:18 +00:00
else:DEFINES += GIT_BRANCH=\\\"UNKNOWN\\\"
exists(.git):DEFINES += GIT_REVISION=\\\"$$system(git rev-parse HEAD)\\\"
2012-11-12 07:24:18 +00:00
else:DEFINES += GIT_REVISION=\\\"UNKNOWN\\\"
2011-06-26 08:30:44 +00:00
SOURCES += main.cpp\
SleepLib/machine.cpp \
SleepLib/machine_loader.cpp \
SleepLib/preferences.cpp \
SleepLib/profiles.cpp \
SleepLib/loader_plugins/cms50_loader.cpp \
SleepLib/loader_plugins/prs1_loader.cpp \
SleepLib/loader_plugins/zeo_loader.cpp \
2011-07-29 14:58:44 +00:00
SleepLib/loader_plugins/resmed_loader.cpp \
2011-06-26 08:30:44 +00:00
daily.cpp \
2011-07-29 14:58:44 +00:00
oximetry.cpp \
2011-06-26 08:30:44 +00:00
overview.cpp \
mainwindow.cpp \
SleepLib/event.cpp \
SleepLib/session.cpp \
SleepLib/day.cpp \
Graphs/gLineChart.cpp \
Graphs/gLineOverlay.cpp \
Graphs/gFooBar.cpp \
Graphs/gXAxis.cpp \
Graphs/gYAxis.cpp \
Graphs/gFlagsLine.cpp \
Graphs/glcommon.cpp \
2011-07-29 14:58:44 +00:00
Graphs/gSegmentChart.cpp \
qextserialport/qextserialport.cpp \
preferencesdialog.cpp \
2011-08-30 08:46:24 +00:00
Graphs/gGraphView.cpp \
Graphs/gStatsLine.cpp \
2011-09-17 12:39:00 +00:00
Graphs/gSummaryChart.cpp \
2011-10-01 12:54:20 +00:00
SleepLib/schema.cpp \
profileselect.cpp \
2011-11-14 14:10:46 +00:00
newprofile.cpp \
exportcsv.cpp \
2011-11-20 02:59:00 +00:00
common_gui.cpp \
SleepLib/loader_plugins/intellipap_loader.cpp \
SleepLib/calcs.cpp \
updateparser.cpp \
quazip/zip.c \
quazip/unzip.c \
quazip/quazipnewinfo.cpp \
quazip/quazipfile.cpp \
quazip/quazip.cpp \
quazip/quacrc32.cpp \
quazip/quaadler32.cpp \
quazip/qioapi.cpp \
quazip/JlCompress.cpp \
UpdaterWindow.cpp \
SleepLib/common.cpp \
SleepLib/loader_plugins/icon_loader.cpp \
SleepLib/loader_plugins/mseries_loader.cpp
2011-07-12 14:53:20 +00:00
unix:SOURCES += qextserialport/posix_qextserialport.cpp
unix:!macx:SOURCES += qextserialport/qextserialenumerator_unix.cpp
unix:!macx:LIBS += -lX11 -lz -lGLU
2011-07-12 14:53:20 +00:00
macx {
SOURCES += qextserialport/qextserialenumerator_osx.cpp
LIBS += -framework IOKit -framework CoreFoundation -lz
2011-07-12 14:53:20 +00:00
}
win32 {
SOURCES += qextserialport/win_qextserialport.cpp qextserialport/qextserialenumerator_win.cpp
DEFINES += WINVER=0x0501 # needed for mingw to pull in appropriate dbt business...probably a better way to do this
LIBS += -lsetupapi
2011-12-17 14:38:15 +00:00
2011-12-17 15:12:35 +00:00
}
if (win32-msvc2008|win32-msvc2010):!equals(TEMPLATE_PREFIX, "vc") {
2011-12-17 14:38:15 +00:00
LIBS += -ladvapi32
2011-12-17 15:12:35 +00:00
DEFINES += BUILD_WITH_MSVC=1
2011-07-12 14:53:20 +00:00
}
2011-06-26 08:30:44 +00:00
HEADERS += \
SleepLib/machine.h \
SleepLib/machine_loader.h \
SleepLib/preferences.h \
SleepLib/profiles.h \
SleepLib/loader_plugins/cms50_loader.h \
SleepLib/loader_plugins/prs1_loader.h \
SleepLib/loader_plugins/zeo_loader.h \
2011-07-29 14:58:44 +00:00
oximetry.h \
2011-06-26 08:30:44 +00:00
daily.h \
overview.h \
mainwindow.h \
SleepLib/event.h \
SleepLib/machine_common.h \
SleepLib/session.h \
SleepLib/day.h \
Graphs/gLineChart.h \
Graphs/gLineOverlay.h \
Graphs/gFooBar.h \
Graphs/gXAxis.h \
Graphs/gYAxis.h \
Graphs/gFlagsLine.h \
Graphs/glcommon.h \
2011-07-29 14:58:44 +00:00
Graphs/gSegmentChart.h\
2011-06-28 15:25:20 +00:00
SleepLib/loader_plugins/resmed_loader.h \
2011-07-12 14:53:20 +00:00
qextserialport/qextserialport_global.h \
qextserialport/qextserialport.h \
qextserialport/qextserialenumerator.h \
preferencesdialog.h \
2011-08-30 08:46:24 +00:00
Graphs/gGraphView.h \
Graphs/gStatsLine.h \
2011-09-17 12:39:00 +00:00
Graphs/gSummaryChart.h \
2011-10-01 12:54:20 +00:00
SleepLib/schema.h \
profileselect.h \
2011-11-14 14:10:46 +00:00
newprofile.h \
exportcsv.h \
2011-11-20 02:59:00 +00:00
common_gui.h \
SleepLib/loader_plugins/intellipap_loader.h \
SleepLib/calcs.h \
version.h \
updateparser.h \
quazip/zip.h \
quazip/unzip.h \
quazip/quazipnewinfo.h \
quazip/quazip_global.h \
quazip/quazipfileinfo.h \
quazip/quazipfile.h \
quazip/quazip.h \
quazip/quacrc32.h \
quazip/quachecksum32.h \
quazip/quaadler32.h \
quazip/JlCompress.h \
quazip/ioapi.h \
quazip/crypt.h \
UpdaterWindow.h \
SleepLib/common.h \
SleepLib/loader_plugins/icon_loader.h \
SleepLib/loader_plugins/mseries_loader.h
2011-07-12 14:53:20 +00:00
2011-06-26 08:30:44 +00:00
FORMS += \
daily.ui \
overview.ui \
2011-07-13 05:27:27 +00:00
mainwindow.ui \
2011-08-02 22:37:15 +00:00
oximetry.ui \
preferencesdialog.ui \
2011-10-01 12:54:20 +00:00
report.ui \
profileselect.ui \
2011-11-14 14:10:46 +00:00
newprofile.ui \
exportcsv.ui \
UpdaterWindow.ui
2011-06-26 08:30:44 +00:00
RESOURCES += \
Resources.qrc
2011-06-26 08:30:44 +00:00
OTHER_FILES += \
docs/index.html \
2011-09-12 12:32:47 +00:00
docs/usage.html \
2011-09-17 12:39:00 +00:00
docs/schema.xml \
docs/graphs.xml \
docs/channels.xml \
2011-11-14 14:10:46 +00:00
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/update_notes.html
2011-11-14 14:10:46 +00:00
2011-11-20 02:59:00 +00:00