2025-03-01 20:38:52 -05:00
|
|
|
QT += core
|
|
|
|
|
TEMPLATE = lib
|
2025-04-04 20:42:41 -04:00
|
|
|
CONFIG += staticlib c++17
|
2025-06-04 22:31:22 -04:00
|
|
|
DEFINES += MINILZO_USE_STATIC
|
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 += \
|
2025-04-23 00:09:35 -04:00
|
|
|
-L$$PWD/../../third_party/xbox_sdk/lib -lxcompress64 \
|
2025-04-04 20:34:24 -04:00
|
|
|
-L$$OUT_PWD/../libs/core -lcore \
|
2025-03-01 20:38:52 -05:00
|
|
|
-L$$OUT_PWD/../libs/encryption -lencryption
|
|
|
|
|
|
|
|
|
|
INCLUDEPATH += \
|
2025-04-23 00:09:35 -04:00
|
|
|
$$PWD/../../third_party/xbox_sdk/include \
|
2025-04-04 20:34:24 -04:00
|
|
|
$$PWD/../core \
|
2025-03-01 20:38:52 -05:00
|
|
|
$$PWD/../encryption
|
|
|
|
|
|
|
|
|
|
DEPENDPATH += \
|
2025-04-23 00:09:35 -04:00
|
|
|
$$PWD/../../third_party/xbox_sdk/include \
|
2025-04-04 20:34:24 -04:00
|
|
|
$$PWD/../core \
|
2025-03-01 20:38:52 -05:00
|
|
|
$$PWD/../encryption
|
|
|
|
|
|
|
|
|
|
DESTDIR = $$OUT_PWD/../
|