mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-22 23:48:08 -05:00
2c3520f454
this removes submodules and external libraries in the code in favor of importing them as CPM packages. CPM_SOURCE_CACHE is recommended as codegen has to readd two of the same dependencies
11 lines
303 B
CMake
11 lines
303 B
CMake
cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED On)
|
|
|
|
project(GeodeChecksum VERSION 1.0)
|
|
|
|
add_executable(${PROJECT_NAME} hash.cpp)
|
|
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC ghc_filesystem)
|
|
|
|
message(STATUS "Building Checksum Exe")
|