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
|
|
|
|
|
|
|
|
SOURCES += \
|
2025-04-04 20:42:41 -04:00
|
|
|
compression.cpp \
|
2025-06-04 22:31:22 -04:00
|
|
|
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 \
|
2025-06-04 22:31:22 -04:00
|
|
|
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/../
|