geode/loader/hash/CMakeLists.txt

11 lines
308 B
Text
Raw Normal View History

2023-12-20 05:47:04 -05:00
cmake_minimum_required(VERSION 3.21 FATAL_ERROR)
project(GeodeChecksum VERSION 1.0)
add_executable(${PROJECT_NAME} main.cpp hash.cpp)
2022-12-13 00:36:50 -05:00
target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_20)
target_link_libraries(${PROJECT_NAME} PUBLIC ghc_filesystem)
message(STATUS "Building Checksum Exe")