Files
toddcox-visualize/CMakeLists.txt
David Allemang 65e4960f09 COMP: Add entt
2023-02-04 21:11:30 -05:00

21 lines
414 B
CMake

cmake_minimum_required(VERSION 3.10)
project(toddcox-faster)
set(CMAKE_CXX_STANDARD 20)
include(vendor/eigen.cmake)
include(vendor/entt.cmake)
include(vendor/fmt.cmake)
include(vendor/glad.cmake)
include(vendor/glfw.cmake)
include(vendor/gtest.cmake)
include(vendor/peglib.cmake)
include(vendor/yaml-cpp.cmake)
include(vendor/embed.cmake)
add_subdirectory(tc)
add_subdirectory(vis)
add_subdirectory(examples)