mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
10 lines
308 B
CMake
10 lines
308 B
CMake
cmake_minimum_required(VERSION 3.21 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")
|