UnleashedRecomp/tools/x_decompress/CMakeLists.txt
Skyth (Asilkan) 999fa2af61
Implement shader archive decompressor for the build system. (#466)
* Implement shader archive decompressor for the build system.

* Fix Linux compilation error.
2025-02-26 13:49:36 +03:00

11 lines
337 B
CMake

project("x_decompress")
set(CMAKE_CXX_STANDARD 17)
add_executable(x_decompress
"x_decompress.cpp"
"${UNLEASHED_RECOMP_TOOLS_ROOT}/XenonRecomp/thirdparty/libmspack/libmspack/mspack/lzxd.c"
)
target_include_directories(x_decompress
PRIVATE "${UNLEASHED_RECOMP_TOOLS_ROOT}/XenonRecomp/thirdparty/libmspack/libmspack/mspack"
)