teleport/client/tp-player/tp-player.pro

53 lines
1.5 KiB
Prolog
Raw Normal View History

TEMPLATE = app
TARGET = tp-player
2019-10-31 17:45:17 +00:00
QT += core gui widgets network
2019-10-31 19:33:18 +00:00
#DEFINES += QT_NO_DEBUG_OUTPUT
HEADERS += \
mainwindow.h \
bar.h \
thr_play.h \
2019-10-31 17:45:17 +00:00
thr_data.h \
update_data.h \
record_format.h \
2019-10-13 19:41:35 +00:00
rle.h \
2019-10-31 17:45:17 +00:00
util.h \
2019-11-03 19:34:11 +00:00
downloader.h \
thr_download.h
SOURCES += \
main.cpp \
mainwindow.cpp \
bar.cpp \
thr_play.cpp \
2019-10-31 17:45:17 +00:00
thr_data.cpp \
update_data.cpp \
2019-10-13 19:41:35 +00:00
rle.c \
2019-10-31 17:45:17 +00:00
util.cpp \
2019-11-03 19:34:11 +00:00
downloader.cpp \
thr_download.cpp
RESOURCES += \
tp-player.qrc
RC_FILE += \
tp-player.rc
FORMS += \
mainwindow.ui
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../external/zlib/build/release/ -lzlibstatic
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../external/zlib/build/debug/ -lzlibstaticd
INCLUDEPATH += $$PWD/../../external/zlib
INCLUDEPATH += $$PWD/../../external/zlib/build
DEPENDPATH += $$PWD/../../external/zlib
DEPENDPATH += $$PWD/../../external/zlib/build
2019-11-15 16:48:23 +00:00
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../../external/zlib/build/release/libzlibstatic.a
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../../external/zlib/build/debug/libzlibstaticd.a
2019-11-15 16:48:23 +00:00
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../../external/zlib/build/release/zlibstatic.lib
else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../../external/zlib/build/debug/zlibstaticd.lib