COMP: Reorganize cmake files

This commit is contained in:
2023-02-05 17:19:25 -05:00
parent aa2566319f
commit 6247832cca
14 changed files with 9 additions and 43 deletions

View File

@@ -3,18 +3,12 @@ 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)
file(GLOB externals ext/*.cmake)
foreach (external ${externals})
include(${external})
endforeach ()
include(vendor/embed.cmake)
include(cmake/embed.cmake)
add_subdirectory(tc)
add_subdirectory(vis)
add_subdirectory(examples)