Networking Initial

This commit is contained in:
IlushaShurupov 2023-07-16 20:03:14 +03:00
parent df3767df29
commit 8e00882bb3
6 changed files with 178 additions and 86 deletions

View file

@ -12,12 +12,6 @@ add_library(${PROJECT_NAME} STATIC ${SOURCES} ${HEADERS})
target_include_directories(${PROJECT_NAME} PUBLIC ./public/)
target_link_libraries(${PROJECT_NAME} PUBLIC Strings)
### ---------------------- Applications --------------------- ###
add_executable(Server ./applications/Server.cpp)
add_executable(Client ./applications/Client.cpp)
target_link_libraries(Server PUBLIC ${PROJECT_NAME})
target_link_libraries(Client PUBLIC ${PROJECT_NAME})
### -------------------------- Tests -------------------------- ###
enable_testing()
file(GLOB TEST_SOURCES "./tests/*.cpp")
@ -25,4 +19,8 @@ add_executable(${PROJECT_NAME}Tests ${TEST_SOURCES})
target_link_libraries(${PROJECT_NAME}Tests ${PROJECT_NAME} Utils)
add_test(NAME ${PROJECT_NAME}Tests COMMAND ${PROJECT_NAME}Tests)
install(TARGETS ${PROJECT_NAME} LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/${PROJECT_NAME}/lib)
install(TARGETS ${PROJECT_NAME} LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/${PROJECT_NAME}/lib)
# todo :remove
add_subdirectory(applications)