XPlor/libs/compression/compression.pro

32 lines
610 B
Prolog
Raw 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
DEFINES += MINILZO_USE_STATIC
2025-03-01 20:38:52 -05:00
SOURCES += \
2025-04-04 20:42:41 -04:00
compression.cpp \
minilzo.c \
lzoconf.h \
lzodefs.h
2025-03-01 20:38:52 -05:00
HEADERS += \
2025-04-04 20:42:41 -04:00
compression.h \
minilzo.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/../