Files
partridge-cpp/CMakeLists.txt
Matthew Gretton-Dann 2423f39c57 Initial C++ version of Partridge solver
This is almost a complete copy of the OCaml version

About twice as fast.
2025-08-31 17:05:06 +01:00

8 lines
134 B
CMake

cmake_minimum_required(VERSION 4.0)
project(partridge_cpp)
set(CMAKE_CXX_STANDARD 20)
add_executable(partridge_cpp
main.cc)