2025-09-05 19:43:49 +00:00
|
|
|
QT += core widgets gui multimedia
|
|
|
|
|
|
|
|
|
|
RC_ICONS = app.ico
|
|
|
|
|
|
|
|
|
|
SUBDIRS += app
|
|
|
|
|
|
|
|
|
|
CONFIG += c++17
|
|
|
|
|
|
|
|
|
|
SOURCES += $$files($$PWD/*.cpp)
|
|
|
|
|
HEADERS += $$files($$PWD/*.h)
|
|
|
|
|
FORMS += $$files($$PWD/*.ui)
|
|
|
|
|
|
|
|
|
|
RESOURCES += ../data/data.qrc
|
|
|
|
|
|
|
|
|
|
LIBS += \
|
2025-09-10 21:54:51 -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-09-05 19:43:49 +00:00
|
|
|
-L$$OUT_PWD/../libs/ -lcore \
|
|
|
|
|
-L$$OUT_PWD/../libs/ -lxassets\
|
|
|
|
|
-L$$OUT_PWD/../libs/ -lcompression \
|
|
|
|
|
-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
|
|
|
|
|
|
|
|
|
|
INCLUDEPATH += \
|
2025-09-10 21:54:51 -04:00
|
|
|
$$PWD/../third_party/devil_sdk/include/ \
|
|
|
|
|
$$PWD/../third_party/zlib/include \
|
|
|
|
|
$$PWD/../third_party/xbox_sdk/include \
|
2025-09-05 19:43:49 +00:00
|
|
|
$$PWD/../libs/core \
|
|
|
|
|
$$PWD/../libs/compression \
|
|
|
|
|
$$PWD/../libs/encryption \
|
|
|
|
|
$$PWD/../libs/fastfile \
|
|
|
|
|
$$PWD/../libs/ddsfile \
|
|
|
|
|
$$PWD/../libs/ipakfile \
|
|
|
|
|
$$PWD/../libs/iwifile \
|
|
|
|
|
$$PWD/../libs/xassets \
|
|
|
|
|
$$PWD/../libs/zonefile
|
|
|
|
|
|
|
|
|
|
DEPENDPATH += \
|
2025-09-10 21:54:51 -04:00
|
|
|
$$PWD/../third_party/devil_sdk/include/ \
|
|
|
|
|
$$PWD/../third_party/zlib/include \
|
|
|
|
|
$$PWD/../third_party/xbox_sdk/include \
|
2025-09-05 19:43:49 +00:00
|
|
|
$$PWD/../libs/core \
|
|
|
|
|
$$PWD/../libs/compression \
|
|
|
|
|
$$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)
|
|
|
|
|
}
|