UnleashedRecomp/tools/fshasher/CMakeLists.txt
2024-12-14 13:03:16 +03:00

7 lines
155 B
CMake

project("fshasher")
add_executable(fshasher "fshasher.cpp")
find_package(xxHash CONFIG REQUIRED)
target_link_libraries(fshasher PRIVATE xxHash::xxhash)