mirror of
https://github.com/allemangD/toddcox-visualize.git
synced 2025-11-10 03:52:48 -05:00
17 lines
240 B
CMake
17 lines
240 B
CMake
add_subdirectory(shaders)
|
|
|
|
add_executable(vis
|
|
src/main.cpp
|
|
)
|
|
target_link_libraries(vis
|
|
tc::tc
|
|
fmt::fmt
|
|
glfw
|
|
glad
|
|
imgui
|
|
eigen
|
|
nlohmann_json
|
|
shaders
|
|
)
|
|
target_include_directories(vis PUBLIC include)
|