mirror of
https://github.com/allemangD/toddcox-visualize.git
synced 2025-11-10 12:02:47 -05:00
17 lines
305 B
CMake
17 lines
305 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(toddcox-faster)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
include(FetchContent)
|
|
|
|
include(vendor/toddcox.cmake)
|
|
include(vendor/yaml-cpp.cmake)
|
|
include(vendor/glad.cmake)
|
|
include(vendor/glfw.cmake)
|
|
include(vendor/glm.cmake)
|
|
|
|
add_subdirectory(vis)
|
|
|
|
add_subdirectory(examples)
|