Modules/Storage/applications/CMakeLists.txt
IlushaShurupov f60e73fc32 Restructure
2024-11-24 22:36:45 +03:00

13 lines
355 B
CMake

cmake_minimum_required(VERSION 3.2)
project(Applications)
file(GLOB SOURCES_CLIENT ./Client.cpp ./SystemAPI.cpp)
file(GLOB SOURCES_SERVER ./Server.cpp ./SystemAPI.cpp)
add_executable(Client ${SOURCES_CLIENT})
target_link_libraries(Client Storage CommandLine)
add_executable(Server ${SOURCES_SERVER})
target_link_libraries(Server Storage CommandLine)