Files
toddcox-visualize/CMakeLists.txt
David Allemang 47de177626 Improve tc::Group, tc::Cosets API.
This is a combination of many commits:

---------------------------------------------------------------------------

final. add public/private for core classes.

wip - big cleanup cosets.

index<>, cosets<>, and group<> all defined

transparent <void> overrides that operate directly on indices, not names

inheritance hierarchy means one can drop or change generator names

still missing path support.

wip - named cosets

fix lang test

wip - named generators

Move Group docstring away from specialization.

Remove tc::Gen; use Group<void>

remove tc::Rel

add thousands separators for benchmark limits

add generators list to tc::group

remove pair_map
2022-11-19 12:32:37 -05:00

22 lines
436 B
CMake

cmake_minimum_required(VERSION 3.21)
project(toddcox-visualize)
set(CMAKE_CXX_STANDARD 20)
include(FetchContent)
include(External/eigen.cmake)
include(External/fmt.cmake)
include(External/glad.cmake)
include(External/glfw.cmake)
include(External/gtest.cmake)
include(External/imgui.cmake)
include(External/json.cmake)
include(External/peglib.cmake)
include(embed.cmake)
enable_testing()
add_subdirectory(tc)
#add_subdirectory(vis)