initial
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
project(tw_client)
|
||||
|
||||
add_subdirectory(shaders)
|
||||
|
||||
file(GLOB FILES
|
||||
src/*.cpp
|
||||
src/network/*.cpp
|
||||
src/world/*.cpp
|
||||
src/io/*.cpp
|
||||
src/draw/*.cpp
|
||||
src/draw/RenderPasses/*.cpp
|
||||
src/debug/*.cpp
|
||||
src/debug/tools/*.cpp
|
||||
)
|
||||
|
||||
add_executable(${PROJECT_NAME} ${FILES})
|
||||
add_dependencies(tw_shaders imgui::plot imgui::plot)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
PUBLIC
|
||||
towards
|
||||
tw::network
|
||||
loft::common
|
||||
loft::base
|
||||
loft_window
|
||||
loft::render_graph
|
||||
tw::protocol
|
||||
tw::serialization
|
||||
tw::gui
|
||||
imgui::imgui
|
||||
imgui::plot
|
||||
glm::glm
|
||||
EnTT::EnTT
|
||||
Jolt
|
||||
Tracy::TracyClient
|
||||
TracyClient
|
||||
pqxx
|
||||
pq
|
||||
)
|
||||
|
||||
target_include_directories(${PROJECT_NAME}
|
||||
PUBLIC
|
||||
${PROJECT_SOURCE_DIR}/src/
|
||||
${JoltPhysics_SOURCE_DIR}/..
|
||||
)
|
||||
Reference in New Issue
Block a user