geode/loader/hash/CMakeLists.txt
matcool bbf2608ac2
Switch libraries for sha3 256, move implementation to source file
The previous library we used (picosha3) returned a wrong hash for one
particular file. Though this was quite rare (we only found 1 such file),
it was a bug with the library regardless.
The current sha3 library now comes from
https://github.com/stbrumme/hash-library
2023-08-03 17:24:04 -03:00

10 lines
307 B
CMake

cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
project(GeodeChecksum VERSION 1.0)
add_executable(${PROJECT_NAME} main.cpp hash.cpp)
target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_20)
target_link_libraries(${PROJECT_NAME} PUBLIC ghc_filesystem)
message(STATUS "Building Checksum Exe")