forked from LRFLEW/OpenRCT2Launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenRCT2Launcher.pro
55 lines (40 loc) · 1.07 KB
/
OpenRCT2Launcher.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-01-15T22:23:35
#
#-------------------------------------------------
QT += core gui widgets network
TARGET = OpenRCT2
TEMPLATE = app
VERSION = 0.0.5
SOURCES += main.cpp\
mainwindow.cpp \
updater.cpp \
configuration.cpp
HEADERS += mainwindow.h \
updater.h \
platform.h \
configuration.h \
configuration_data.h
FORMS += mainwindow.ui \
configuration.ui
RESOURCES += resources.qrc
linux {
SOURCES += archives/gzipreadfilter.cpp \
archives/tarextractor.cpp
HEADERS += archives/gzipreadfilter.h \
archives/tarextractor.h
} else {
SOURCES += archives/zipextractor.cpp
HEADERS += archives/zipextractor.h
}
CONFIG += c++11
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
macx: ICON = Icon/OpenRCT2.icns
win32: RC_FILE = Icon/OpenRCT2Launcher.rc
# Use Qt5's Zlib if avaiable, otherwise use system's
exists($$[QT_INSTALL_PREFIX]/include/QtZlib) {
INCLUDEPATH += $$[QT_INSTALL_PREFIX]/include/QtZlib
} else {
LIBS += -lz
}