33 lines
449 B
CMake
33 lines
449 B
CMake
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
|
|
tw::message_protocol
|
|
tw::quicr
|
|
tw_common
|
|
tw::gui
|
|
imgui::imgui
|
|
imgui::plot
|
|
glm::glm
|
|
)
|