summaryrefslogtreecommitdiffstats
path: root/subsurface.pro
diff options
context:
space:
mode:
Diffstat (limited to 'subsurface.pro')
-rw-r--r--subsurface.pro25
1 files changed, 22 insertions, 3 deletions
diff --git a/subsurface.pro b/subsurface.pro
index 331c9735a..d052d9639 100644
--- a/subsurface.pro
+++ b/subsurface.pro
@@ -20,8 +20,13 @@ else: TARGET = subsurface
QMAKE_CLEAN += $$TARGET
VERSION = 4.4.2
+VERSION_FILE = $$OUT_PWD/ssrf-version.h
+# create a blank VERSION_FILE if missing
+system(cat $$VERSION_FILE > /dev/null 2>&1 || touch $$VERSION_FILE)
HEADERS = \
+ $$VERSION_FILE \
+ version.h \
cochran.h \
color.h \
deco.h \
@@ -29,6 +34,7 @@ HEADERS = \
display.h \
dive.h \
divelist.h \
+ divesite.h \
file.h \
gettextfromc.h \
gettext.h \
@@ -99,12 +105,15 @@ HEADERS = \
configuredivecomputer.h \
configuredivecomputerthreads.h \
devicedetails.h \
+ datatrak.h \
qt-ui/statistics/monthstatistics.h \
qt-ui/statistics/statisticswidget.h \
qt-ui/statistics/statisticsbar.h \
qt-ui/statistics/yearstatistics.h \
qt-ui/diveshareexportdialog.h \
- qt-ui/filtermodels.h
+ qt-ui/filtermodels.h \
+ qt-ui/undocommands.h \
+ qt-ui/notificationwidget.h
android: HEADERS -= \
qt-ui/usermanual.h \
@@ -113,14 +122,18 @@ android: HEADERS -= \
qt-ui/printoptions.h
SOURCES = \
+ version.c \
cochran.c \
+ datatrak.c \
deco.c \
device.c \
dive.c \
divelist.c \
+ divesite.c \
equipment.c \
file.c \
gettextfromc.cpp \
+ git-access.c \
libdivecomputer.c \
liquivision.c \
load-git.c \
@@ -198,7 +211,10 @@ SOURCES = \
qt-ui/statistics/statisticsbar.cpp \
qt-ui/statistics/monthstatistics.cpp \
qt-ui/diveshareexportdialog.cpp \
- qt-ui/filtermodels.cpp
+ qt-ui/filtermodels.cpp \
+ qt-ui/undocommands.cpp \
+ qt-ui/notificationwidget.cpp \
+ ostctools.c
android: SOURCES += android.cpp
else: win32: SOURCES += windows.c
@@ -235,7 +251,10 @@ FORMS = \
qt-ui/configuredivecomputerdialog.ui \
qt-ui/listfilter.ui \
qt-ui/diveshareexportdialog.ui \
- qt-ui/filterwidget.ui
+ qt-ui/filterwidget.ui \
+ qt-ui/plannerDetails.ui \
+ qt-ui/urldialog.ui \
+ qt-ui/locationInformation.ui
# Nether usermanual or printing is supported on android right now
android: FORMS -= qt-ui/printoptions.ui