XPlor/libs/compression/compression.pro

29 lines
550 B
Prolog
Raw Permalink Normal View History

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-03-01 20:38:52 -05:00
SOURCES += \
2025-04-04 20:42:41 -04:00
compression.cpp \
2025-03-01 20:38:52 -05:00
lzokay.cpp \
HEADERS += \
2025-04-04 20:42:41 -04:00
compression.h \
lzokay.h
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/../