Add XMem functions (in progress) and LZO, fix ZLib.

This commit is contained in:
= 2025-06-04 22:31:22 -04:00
parent b204858a90
commit ea39199201

View File

@ -1,14 +1,17 @@
QT += core QT += core
TEMPLATE = lib TEMPLATE = lib
CONFIG += staticlib c++17 CONFIG += staticlib c++17
DEFINES += MINILZO_USE_STATIC
SOURCES += \ SOURCES += \
compression.cpp \ compression.cpp \
lzokay.cpp \ minilzo.c \
lzoconf.h \
lzodefs.h
HEADERS += \ HEADERS += \
compression.h \ compression.h \
lzokay.h minilzo.h
LIBS += \ LIBS += \
-L$$PWD/../../third_party/xbox_sdk/lib -lxcompress64 \ -L$$PWD/../../third_party/xbox_sdk/lib -lxcompress64 \