2025-03-01 20:38:52 -05:00
|
|
|
QT += core widgets
|
|
|
|
|
TEMPLATE = lib
|
2025-04-04 20:40:37 -04:00
|
|
|
CONFIG += staticlib c++17
|
2025-03-01 20:38:52 -05:00
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
|
fastfile_cod2.cpp \
|
|
|
|
|
fastfile_cod5.cpp \
|
|
|
|
|
fastfile_cod7.cpp \
|
|
|
|
|
fastfile_cod9.cpp \
|
|
|
|
|
fastfile.cpp
|
|
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
|
fastfile.h \
|
|
|
|
|
fastfile_cod2.h \
|
|
|
|
|
fastfile_cod5.h \
|
|
|
|
|
fastfile_cod7.h \
|
|
|
|
|
fastfile_cod9.h
|
|
|
|
|
|
|
|
|
|
LIBS += \
|
|
|
|
|
-L$$OUT_PWD/../libs/core -lcore \
|
|
|
|
|
-L$$OUT_PWD/../libs/compression -lcompression \
|
|
|
|
|
-L$$OUT_PWD/../libs/encryption -lencryption \
|
|
|
|
|
-L$$OUT_PWD/../libs/zonefile -lzonefile
|
|
|
|
|
|
|
|
|
|
INCLUDEPATH += \
|
|
|
|
|
$$PWD/../core \
|
|
|
|
|
$$PWD/../compression \
|
|
|
|
|
$$PWD/../encryption \
|
|
|
|
|
$$PWD/../zonefile
|
|
|
|
|
|
|
|
|
|
DEPENDPATH += \
|
|
|
|
|
$$PWD/../core \
|
|
|
|
|
$$PWD/../compression \
|
|
|
|
|
$$PWD/../encryption \
|
|
|
|
|
$$PWD/../zonefile
|
|
|
|
|
|
|
|
|
|
DESTDIR = $$OUT_PWD/../
|