mirror of
https://github.com/allemangD/toddcox-visualize.git
synced 2025-11-10 12:02:47 -05:00
10 lines
204 B
CMake
10 lines
204 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(tc)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
add_library(tc STATIC src/groups.cpp src/solver.cpp)
|
|
target_include_directories(tc PUBLIC include)
|
|
|
|
add_subdirectory(example)
|