hello-world-cpp/task_5/CMakeLists.txt

11 lines
254 B
CMake
Raw Normal View History

2025-01-13 02:35:49 +10:00
cmake_minimum_required(VERSION 3.13)
project(hello-world-cpp-logger)
add_library(socket_up STATIC socket_up.cpp)
add_library(socket_handler STATIC socket_handler.cpp)
add_executable(main main.cpp)
target_link_libraries(main socket_up socket_handler)