Serializable mesh with nlohmann_json

Displays a cube generated by meshlib.hpp (serialtest)
This commit is contained in:
David Allemang
2022-02-11 16:12:27 -05:00
committed by David Allemang
parent 10a49a4172
commit 7fff7a375f
6 changed files with 302 additions and 21 deletions

View File

@@ -9,6 +9,10 @@ include(External/glfw.cmake)
include(External/imgui.cmake)
include(External/eigen.cmake)
include(External/glad.cmake)
include(External/json.cmake)
add_executable(vis main.cpp)
target_link_libraries(vis glfw glad imgui eigen)
target_link_libraries(vis glfw glad imgui eigen nlohmann_json)
add_executable(serial serialtest.cpp)
target_link_libraries(serial eigen nlohmann_json)