2026-01-11 12:11:38 -05:00
|
|
|
QT += core
|
|
|
|
|
QT -= gui
|
|
|
|
|
|
|
|
|
|
TEMPLATE = app
|
|
|
|
|
CONFIG += console c++17
|
|
|
|
|
CONFIG -= app_bundle
|
|
|
|
|
|
|
|
|
|
TARGET = xscript-cli
|
|
|
|
|
|
|
|
|
|
SOURCES += main.cpp
|
|
|
|
|
|
|
|
|
|
# Link against the DSL library
|
2026-01-11 12:39:18 -05:00
|
|
|
LIBS += -L$$OUT_PWD/../../libs -ldsl -lcompression -lcore -lencryption
|
|
|
|
|
LIBS += -L$$PWD/../../third_party/xbox_sdk/lib -lxcompress64
|
2026-01-11 12:11:38 -05:00
|
|
|
|
|
|
|
|
# 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/../../
|