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-09-07 12:36:08 -04:00
|
|
|
#-L$$PWD/../../third_party/devil_sdk/lib/ -lDevIL -lILU -lILUT \
|
|
|
|
|
#-L$$PWD/../../third_party/zlib/lib/ -lzlib \
|
|
|
|
|
#-L$$PWD/../../third_party/xbox_sdk/lib -lxcompress64 \
|
2025-07-10 00:06:16 -04:00
|
|
|
-L$$OUT_PWD/../../libs/ -lcore \
|
2025-09-05 18:35:17 -04:00
|
|
|
-L$$OUT_PWD/../../libs/ -lxassets\
|
2025-04-23 00:09:35 -04:00
|
|
|
-L$$OUT_PWD/../../libs/ -lcompression \
|
2025-09-05 18:35:17 -04:00
|
|
|
-L$$OUT_PWD/../../libs/ -lencryption \
|
|
|
|
|
-L$$OUT_PWD/../../libs/ -lfastfile \
|
|
|
|
|
-L$$OUT_PWD/../../libs/ -lddsfile \
|
|
|
|
|
-L$$OUT_PWD/../../libs/ -lipakfile \
|
|
|
|
|
-L$$OUT_PWD/../../libs/ -liwifile \
|
|
|
|
|
-L$$OUT_PWD/../../libs/ -lzonefile
|
2025-04-23 00:09:35 -04:00
|
|
|
|
|
|
|
|
INCLUDEPATH += \
|
2025-09-07 12:36:08 -04:00
|
|
|
#$$PWD/../../third_party/devil_sdk/include/ \
|
|
|
|
|
#$$PWD/../../third_party/zlib/include \
|
|
|
|
|
#$$PWD/../../third_party/xbox_sdk/include \
|
2025-07-10 00:06:16 -04:00
|
|
|
$$PWD/../../libs/core \
|
2025-04-23 00:09:35 -04:00
|
|
|
$$PWD/../../libs/compression \
|
2025-09-05 18:35:17 -04:00
|
|
|
$$PWD/../../libs/encryption \
|
|
|
|
|
$$PWD/../../libs/fastfile \
|
|
|
|
|
$$PWD/../../libs/ddsfile \
|
|
|
|
|
$$PWD/../../libs/ipakfile \
|
|
|
|
|
$$PWD/../../libs/iwifile \
|
|
|
|
|
$$PWD/../../libs/xassets \
|
|
|
|
|
$$PWD/../../libs/zonefile
|
2025-04-23 00:09:35 -04:00
|
|
|
|
|
|
|
|
DEPENDPATH += \
|
2025-09-07 12:36:08 -04:00
|
|
|
#$$PWD/../../third_party/devil_sdk/include/ \
|
|
|
|
|
#$$PWD/../../third_party/zlib/include \
|
|
|
|
|
#$$PWD/../../third_party/xbox_sdk/include \
|
2025-07-10 00:06:16 -04:00
|
|
|
$$PWD/../../libs/core \
|
2025-04-23 00:09:35 -04:00
|
|
|
$$PWD/../../libs/compression \
|
2025-09-05 18:35:17 -04:00
|
|
|
$$PWD/../../libs/encryption \
|
|
|
|
|
$$PWD/../../libs/fastfile \
|
|
|
|
|
$$PWD/../../libs/ddsfile \
|
|
|
|
|
$$PWD/../../libs/ipakfile \
|
|
|
|
|
$$PWD/../../libs/iwifile \
|
|
|
|
|
$$PWD/../../libs/xassets \
|
|
|
|
|
$$PWD/../../libs/zonefile
|
|
|
|
|
|
|
|
|
|
win32 {
|
|
|
|
|
QMAKE_POST_LINK =
|
|
|
|
|
QMAKE_POST_LINK += for /D %%G in (\"$$PWD/../../third_party/*/lib\") do copy /Y \"%%~G\*.dll\" \"$$OUT_PWD/$$DESTDIR/\" >NUL $$escape_expand(\\n\\t)
|
|
|
|
|
}
|