XPlor/libs/compression/compression.pro

26 lines
618 B
Prolog

QT += core
TEMPLATE = lib
CONFIG += staticlib c++17
DEFINES += MINILZO_USE_STATIC
SOURCES += $$files($$PWD/*.cpp, true) \
$$files($$PWD/*.c, true)
HEADERS += $$files($$PWD/*.h, true)
LIBS += \
-L$$PWD/../../third_party/xbox_sdk/lib -lxcompress64 \
-L$$OUT_PWD/../libs/core -lcore \
-L$$OUT_PWD/../libs/encryption -lencryption
INCLUDEPATH += \
$$PWD/../../third_party/xbox_sdk/include \
$$PWD/../core \
$$PWD/../encryption
DEPENDPATH += \
$$PWD/../../third_party/xbox_sdk/include \
$$PWD/../core \
$$PWD/../encryption
DESTDIR = $$OUT_PWD/../