#1 - quicr module
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
project(tw_template)
|
||||
|
||||
# set(CMAKE_CXX_CLANG_TIDY "/usr/bin/clang-tidy;-checks=*")
|
||||
|
||||
file(GLOB FILES
|
||||
src/ZoneServer.cpp
|
||||
src/ZoneCoordinator.cpp
|
||||
src/ZoneClusterLink.cpp
|
||||
src/ZoneManager.cpp
|
||||
src/interest_management/*.cpp
|
||||
src/replication/*.cpp
|
||||
src/systems/*.cpp
|
||||
src/monitoring/*.cpp
|
||||
src/network/*.cpp
|
||||
)
|
||||
|
||||
add_library(tw_server_lib STATIC ${FILES})
|
||||
|
||||
target_include_directories(tw_server_lib
|
||||
PUBLIC
|
||||
${PROJECT_SOURCE_DIR}/src/
|
||||
)
|
||||
|
||||
target_link_libraries(tw_server_lib
|
||||
PUBLIC
|
||||
towards
|
||||
tw::network
|
||||
tw::protocol
|
||||
tw::serialization
|
||||
glm::glm
|
||||
EnTT::EnTT
|
||||
Jolt
|
||||
protobuf::libprotobuf
|
||||
${Boost_LIBRARIES}
|
||||
Tracy::TracyClient
|
||||
pqxx
|
||||
pq
|
||||
)
|
||||
|
||||
add_executable(${PROJECT_NAME} src/server.cpp)
|
||||
|
||||
target_link_libraries(tw_server
|
||||
PUBLIC
|
||||
tw_server_lib
|
||||
)
|
||||
|
||||
ADD_SUBDIRECTORY(./tests/)
|
||||
@@ -0,0 +1,3 @@
|
||||
# Template
|
||||
|
||||
This is a template module for boosting start.
|
||||
Reference in New Issue
Block a user