This commit is contained in:
Martin Slachta
2026-07-18 14:31:15 +02:00
commit a04f0dc262
3343 changed files with 1140208 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
project(server_gui)
file(GLOB CXX_FILES
src/*.cpp
)
add_executable(${PROJECT_NAME} ${CXX_FILES})
target_include_directories(
${PROJECT_NAME}
PUBLIC
./src/
)
target_link_libraries(
${PROJECT_NAME}
PUBLIC
tw::network
loft::common
loft::base
loft_window
loft::render_graph
tw::protocol
towards
tw::gui
imgui::imgui
imgui::plot
glm::glm
)