2025-03-01 20:38:52 -05:00
|
|
|
QT += core
|
|
|
|
|
TEMPLATE = lib
|
|
|
|
|
CONFIG += staticlib c++17 debug
|
|
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
|
lzokay.cpp \
|
|
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
|
lzx.h \
|
|
|
|
|
lzokay.hpp \
|
|
|
|
|
compressor.h
|
|
|
|
|
|
|
|
|
|
LIBS += \
|
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-04 20:34:24 -04:00
|
|
|
$$PWD/../core \
|
2025-03-01 20:38:52 -05:00
|
|
|
$$PWD/../encryption
|
|
|
|
|
|
|
|
|
|
DEPENDPATH += \
|
2025-04-04 20:34:24 -04:00
|
|
|
$$PWD/../core \
|
2025-03-01 20:38:52 -05:00
|
|
|
$$PWD/../encryption
|
|
|
|
|
|
|
|
|
|
DESTDIR = $$OUT_PWD/../
|