-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathlaunch.pro
65 lines (54 loc) · 1.34 KB
/
launch.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
56
57
58
59
60
61
62
63
64
65
#-------------------------------------------------
#
# Project created by QtCreator 2012-08-06T14:25:21
#
#-------------------------------------------------
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = launch
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
settings.cpp \
installwizard.cpp \
installwizard_setup.cpp \
installwizard_finished.cpp \
installwizard_patch.cpp \
installwizard_eula.cpp \
installwizard_copy.cpp \
filecopy.cpp \
quakeutils.cpp \
fileextract.cpp \
minizip/ioapi.c \
minizip/unzip.c
HEADERS += mainwindow.h \
settings.h \
installwizard.h \
installwizard_setup.h \
installwizard_finished.h \
installwizard_patch.h \
installwizard_eula.h \
installwizard_copy.h \
filecopy.h \
quakeutils.h \
fileextract.h \
minizip/ioapi.h \
minizip/unzip.h
FORMS += mainwindow.ui \
installwizard.ui \
installwizard_setup.ui \
installwizard_finished.ui \
installwizard_patch.ui \
installwizard_eula.ui \
installwizard_copy.ui
OTHER_FILES += \
README.md \
iol.png \
iolICO.png
RESOURCES += \
imgs.qrc
RC_FILE = launch.rc
# mac os x doesn't have fopen64 for minizip
# mac os x (qt5 at least), needs explicit zlib linking
macx:DEFINES += USE_FILE32API
macx:LIBS += -lz