WIP: Copy tc logic from toddcox-faster

This commit is contained in:
David Allemang
2022-02-23 18:36:51 -05:00
parent 22976a9778
commit 63eb9e47b4
8 changed files with 730 additions and 1 deletions

View File

@@ -11,7 +11,9 @@ include(External/eigen.cmake)
include(External/glad.cmake)
include(External/json.cmake)
include_directories(./include)
include_directories(include)
add_subdirectory(tc)
add_custom_target(resources DEPENDS resources_output)
add_custom_command(
@@ -31,3 +33,6 @@ add_dependencies(vis resources)
add_executable(serial src/serialtest.cpp)
target_link_libraries(serial eigen nlohmann_json)
add_executable(tctest src/tctest.cpp)
target_link_libraries(tctest PUBLIC eigen tc)