This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
nettrans/net_com/CMakeLists.txt

13 lines
309 B
CMake
Raw Normal View History

2024-04-16 20:34:32 +08:00
cmake_minimum_required (VERSION 3.8)
project (net_com)
set(CMAKE_CXX_STANDARD 11)
2024-04-16 21:34:06 +08:00
set(Boost_USE_STATIC_LIBS ON)
find_package(Boost REQUIRED filesystem)
include_directories(${Boost_INCLUDE_DIR})
2024-04-16 20:34:32 +08:00
add_library(net_com STATIC net_com.h net_com.cpp)
2024-04-16 21:34:06 +08:00
target_link_libraries(net_com PRIVATE
${Boost_LIBRARIES}
)