2025-03-01 20:38:52 -05:00
|
|
|
QT += core widgets
|
|
|
|
|
TEMPLATE = lib
|
2025-04-04 20:40:37 -04:00
|
|
|
CONFIG += staticlib c++17
|
2025-03-01 20:38:52 -05:00
|
|
|
|
2025-08-14 17:30:25 -04:00
|
|
|
SOURCES += $$files($$PWD/*.cpp, true)
|
|
|
|
|
HEADERS += $$files($$PWD/*.h, true)
|
2025-03-01 20:38:52 -05:00
|
|
|
|
|
|
|
|
LIBS += \
|
|
|
|
|
-L$$OUT_PWD/../libs/core -lcore \
|
2025-09-05 18:35:17 -04:00
|
|
|
-L$$OUT_PWD/../libs/core -lxassets \
|
2025-03-01 20:38:52 -05:00
|
|
|
-L$$OUT_PWD/../libs/compression -lcompression \
|
|
|
|
|
-L$$OUT_PWD/../libs/encryption -lencryption \
|
|
|
|
|
-L$$OUT_PWD/../libs/zonefile -lzonefile
|
|
|
|
|
|
|
|
|
|
INCLUDEPATH += \
|
|
|
|
|
$$PWD/../core \
|
|
|
|
|
$$PWD/../compression \
|
|
|
|
|
$$PWD/../encryption \
|
2025-09-05 18:35:17 -04:00
|
|
|
$$PWD/../xassets \
|
2025-05-03 09:57:47 -04:00
|
|
|
$$PWD/../zonefile \
|
|
|
|
|
$$PWD/../zonefile/360 \
|
|
|
|
|
$$PWD/../zonefile/PC \
|
|
|
|
|
$$PWD/../zonefile/PS3 \
|
|
|
|
|
$$PWD/../zonefile/Wii \
|
2025-07-10 00:10:49 -04:00
|
|
|
$$PWD/../zonefile/PS3 \
|
2025-05-03 09:57:47 -04:00
|
|
|
$$PWD/../zonefile/WiiU
|
2025-03-01 20:38:52 -05:00
|
|
|
|
|
|
|
|
DEPENDPATH += \
|
|
|
|
|
$$PWD/../core \
|
|
|
|
|
$$PWD/../compression \
|
|
|
|
|
$$PWD/../encryption \
|
2025-09-05 18:35:17 -04:00
|
|
|
$$PWD/../xassets \
|
2025-07-10 00:10:49 -04:00
|
|
|
$$PWD/../zonefile \
|
|
|
|
|
$$PWD/../zonefile/360 \
|
|
|
|
|
$$PWD/../zonefile/PC \
|
|
|
|
|
$$PWD/../zonefile/PS3 \
|
|
|
|
|
$$PWD/../zonefile/Wii \
|
|
|
|
|
$$PWD/../zonefile/PS3 \
|
|
|
|
|
$$PWD/../zonefile/WiiU
|
2025-03-01 20:38:52 -05:00
|
|
|
|
|
|
|
|
DESTDIR = $$OUT_PWD/../
|