- Change TreeBuilder m_registry from reference to pointer to allow assignment - Add default constructor to TreeBuilder for member initialization - Add Xbox SDK xcompress64 library to xscript-cli linker dependencies Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
563 B
INI
29 lines
563 B
INI
QT += core
|
|
QT -= gui
|
|
|
|
TEMPLATE = app
|
|
CONFIG += console c++17
|
|
CONFIG -= app_bundle
|
|
|
|
TARGET = xscript-cli
|
|
|
|
SOURCES += main.cpp
|
|
|
|
# Link against the DSL library
|
|
LIBS += -L$$OUT_PWD/../../libs -ldsl -lcompression -lcore -lencryption
|
|
LIBS += -L$$PWD/../../third_party/xbox_sdk/lib -lxcompress64
|
|
|
|
# Include paths
|
|
INCLUDEPATH += \
|
|
$$PWD/../../libs/dsl \
|
|
$$PWD/../../libs/compression \
|
|
$$PWD/../../libs/core
|
|
|
|
DEPENDPATH += \
|
|
$$PWD/../../libs/dsl \
|
|
$$PWD/../../libs/compression \
|
|
$$PWD/../../libs/core
|
|
|
|
# Output directory
|
|
DESTDIR = $$OUT_PWD/../../
|