2025-04-23 00:09:35 -04:00
|
|
|
QT += core widgets gui multimedia
|
|
|
|
|
|
|
|
|
|
RC_ICONS = zentry.ico
|
|
|
|
|
|
|
|
|
|
CONFIG += c++17
|
|
|
|
|
|
2025-08-14 17:30:25 -04:00
|
|
|
SOURCES += $$files($$PWD/*.cpp, true)
|
|
|
|
|
HEADERS += $$files($$PWD/*.h, true)
|
|
|
|
|
FORMS += $$files($$PWD/*.ui, true)
|
2025-04-23 00:09:35 -04:00
|
|
|
|
|
|
|
|
LIBS += \
|
2025-07-10 00:06:16 -04:00
|
|
|
-L$$OUT_PWD/../../libs/ -lcore \
|
2025-04-23 00:09:35 -04:00
|
|
|
-L$$OUT_PWD/../../libs/ -lcompression \
|
|
|
|
|
-L$$PWD/../../third_party/xbox_sdk/lib -lxcompress64
|
|
|
|
|
|
|
|
|
|
INCLUDEPATH += \
|
2025-07-10 00:06:16 -04:00
|
|
|
$$PWD/../../libs/core \
|
2025-04-23 00:09:35 -04:00
|
|
|
$$PWD/../../libs/compression \
|
|
|
|
|
$$PWD/../../third_party/xbox_sdk/include
|
|
|
|
|
|
|
|
|
|
DEPENDPATH += \
|
2025-07-10 00:06:16 -04:00
|
|
|
$$PWD/../../libs/core \
|
2025-04-23 00:09:35 -04:00
|
|
|
$$PWD/../../libs/compression \
|
|
|
|
|
$$PWD/../../third_party/xbox_sdk/include
|