mirror of
https://github.com/allemangD/toddcox-visualize.git
synced 2025-11-10 03:52:48 -05:00
15 lines
266 B
CMake
15 lines
266 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(toddcox-faster)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
file(GLOB externals ext/*.cmake)
|
|
foreach (external ${externals})
|
|
include(${external})
|
|
endforeach ()
|
|
|
|
include(cmake/embed.cmake)
|
|
|
|
add_subdirectory(tc)
|
|
add_subdirectory(vis)
|