mirror of
https://github.com/allemangD/toddcox-visualize.git
synced 2025-11-10 12:02:47 -05:00
20 lines
439 B
CMake
20 lines
439 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(toddcox-faster)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
add_library(glad vendor/glad/src/glad.c)
|
|
target_include_directories(glad PUBLIC vendor/glad/include)
|
|
|
|
option(GLFW_BUILD_DOCS OFF)
|
|
option(GLFW_BUILD_EXAMPLES OFF)
|
|
option(GLFW_BUILD_TESTS OFF)
|
|
add_subdirectory(vendor/glfw)
|
|
|
|
option(GLM_TEST_ENABLE OFF)
|
|
add_subdirectory(vendor/glm)
|
|
|
|
add_subdirectory(tc)
|
|
add_subdirectory(vis)
|
|
add_subdirectory(example)
|