XPlor/tools/compro/compro.pro

55 lines
1.7 KiB
Prolog
Raw Normal View History

2025-06-04 22:34:49 -04:00
QT += core widgets gui multimedia
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-07-10 00:06:37 -04:00
2025-06-04 22:34:49 -04:00
LIBS += \
2025-09-10 21:58:26 -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 18:35:17 -04:00
-L$$OUT_PWD/../../libs/ -lcore \
-L$$OUT_PWD/../../libs/ -lxassets\
2025-06-04 22:34:49 -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-06-04 22:34:49 -04:00
INCLUDEPATH += \
2025-09-10 21:58:26 -04:00
$$PWD/../../third_party/devil_sdk/include/ \
$$PWD/../../third_party/zlib/include \
$$PWD/../../third_party/xbox_sdk/include \
2025-09-05 18:35:17 -04:00
$$PWD/../../libs/core \
2025-06-04 22:34:49 -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-06-04 22:34:49 -04:00
DEPENDPATH += \
2025-09-10 21:58:26 -04:00
$$PWD/../../third_party/devil_sdk/include/ \
$$PWD/../../third_party/zlib/include \
$$PWD/../../third_party/xbox_sdk/include \
2025-09-05 18:35:17 -04:00
$$PWD/../../libs/core \
2025-06-04 22:34:49 -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-06-04 22:34:49 -04:00
2025-09-05 18:35:17 -04:00
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)
}