XenosRecomp/thirdparty/CMakeLists.txt
Skyth (Asilkan) 66c618cc72
Linux support. (#4)
* Initial Linux attempt.

* Fix DXIL library linkage.

* Compiling and running on Linux.

* Fix compilation error on Windows.

* Convert almost all dependencies to submodules.
2024-12-21 00:51:39 +03:00

11 lines
322 B
CMake

if (NOT TARGET fmt::fmt)
add_subdirectory("${SHADER_RECOMP_THIRDPARTY_ROOT}/fmt")
endif()
if (NOT TARGET xxHash::xxhash)
add_subdirectory("${SHADER_RECOMP_THIRDPARTY_ROOT}/xxHash/cmake_unofficial")
endif()
if (NOT TARGET libzstd)
add_subdirectory("${SHADER_RECOMP_THIRDPARTY_ROOT}/zstd/build/cmake")
endif()