2019-06-06 07:02:48 +00:00
|
|
|
cmake_minimum_required(VERSION 3.7)
|
2020-01-09 07:57:01 +00:00
|
|
|
project(UDPC)
|
2019-06-06 07:02:48 +00:00
|
|
|
|
2020-01-09 07:57:01 +00:00
|
|
|
set(UDPC_VERSION 1.0)
|
2019-06-06 07:02:48 +00:00
|
|
|
|
2020-01-09 07:57:01 +00:00
|
|
|
set(UDPC_SOURCES
|
2019-06-06 07:02:48 +00:00
|
|
|
src/UDPConnection.cpp
|
2023-07-22 09:58:36 +00:00
|
|
|
src/CXX11_shared_spin_lock.cpp
|
2019-06-06 07:02:48 +00:00
|
|
|
)
|
|
|
|
|
2023-07-22 04:25:43 +00:00
|
|
|
add_compile_options(
|
|
|
|
-Wall -Wextra -Wpedantic -Wno-missing-braces
|
|
|
|
$<$<COMPILE_LANGUAGE:CXX>:-Weffc++>
|
|
|
|
$<$<CONFIG:DEBUG>:-O0>
|
|
|
|
)
|
2019-06-06 07:02:48 +00:00
|
|
|
|
|
|
|
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
|
|
|
message(STATUS "Setting build type to 'Debug', none was specified.")
|
|
|
|
set(CMAKE_BUILD_TYPE Debug CACHE STRING "Choose the type of build." FORCE)
|
|
|
|
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release")
|
|
|
|
endif()
|
|
|
|
|
2020-01-09 07:57:01 +00:00
|
|
|
add_library(UDPC ${UDPC_SOURCES})
|
2019-06-06 07:02:48 +00:00
|
|
|
|
2020-01-09 07:57:01 +00:00
|
|
|
set_target_properties(UDPC PROPERTIES VERSION ${UDPC_VERSION})
|
2019-06-06 07:02:48 +00:00
|
|
|
|
2020-01-09 07:57:01 +00:00
|
|
|
target_compile_features(UDPC PUBLIC cxx_std_11)
|
|
|
|
target_link_libraries(UDPC PUBLIC pthread)
|
2019-09-19 03:23:15 +00:00
|
|
|
if(WIN32)
|
2019-09-21 03:15:49 +00:00
|
|
|
if(MINGW)
|
2020-01-09 07:57:01 +00:00
|
|
|
target_compile_definitions(UDPC PUBLIC UDPC_PLATFORM_MINGW)
|
|
|
|
target_link_libraries(UDPC PUBLIC ws2_32)
|
|
|
|
target_link_libraries(UDPC PUBLIC iphlpapi)
|
2019-09-21 03:15:49 +00:00
|
|
|
else()
|
2020-01-09 07:57:01 +00:00
|
|
|
target_link_libraries(UDPC PUBLIC Ws2_32)
|
|
|
|
target_link_libraries(UDPC PUBLIC Iphlpapi)
|
2019-09-21 03:15:49 +00:00
|
|
|
endif()
|
2019-09-19 03:23:15 +00:00
|
|
|
endif()
|
2019-06-06 07:02:48 +00:00
|
|
|
|
2019-11-18 08:37:03 +00:00
|
|
|
if(UDPC_DISABLE_LIBSODIUM)
|
|
|
|
message(STATUS "libsodium disabled")
|
2020-01-16 02:30:22 +00:00
|
|
|
elseif(DEFINED M_LIBSODIUM_LIBRARIES AND DEFINED M_LIBSODIUM_INCLUDE_DIRS)
|
2020-01-16 02:27:19 +00:00
|
|
|
message(STATUS "libsodium manual paths detected, using them")
|
|
|
|
target_compile_definitions(UDPC PUBLIC UDPC_LIBSODIUM_ENABLED)
|
2020-01-16 02:30:22 +00:00
|
|
|
target_link_libraries(UDPC PUBLIC ${M_LIBSODIUM_LIBRARIES})
|
|
|
|
target_include_directories(UDPC PUBLIC ${M_LIBSODIUM_INCLUDE_DIRS})
|
2019-11-18 08:37:03 +00:00
|
|
|
else()
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
pkg_check_modules(LIBSODIUM QUIET libsodium)
|
|
|
|
if(LIBSODIUM_FOUND)
|
2020-01-09 07:57:01 +00:00
|
|
|
target_compile_definitions(UDPC PUBLIC UDPC_LIBSODIUM_ENABLED)
|
|
|
|
target_link_libraries(UDPC PUBLIC ${LIBSODIUM_LIBRARIES})
|
|
|
|
target_include_directories(UDPC PUBLIC ${LIBSODIUM_INCLUDE_DIRS})
|
|
|
|
target_compile_options(UDPC PUBLIC ${LIBSODIUM_CFLAGS_OTHER})
|
2019-11-18 08:37:03 +00:00
|
|
|
message(STATUS "libsodium enabled")
|
|
|
|
else()
|
|
|
|
message(STATUS "libsodium not found, UDPC will be compiled without libsodium support")
|
|
|
|
endif()
|
|
|
|
endif()
|
2019-09-23 11:11:12 +00:00
|
|
|
|
2019-06-06 07:02:48 +00:00
|
|
|
if(CMAKE_BUILD_TYPE MATCHES "Debug")
|
2019-06-07 02:33:44 +00:00
|
|
|
|
|
|
|
find_package(GTest QUIET)
|
|
|
|
if(GTEST_FOUND)
|
|
|
|
set(UDPC_UnitTest_SOURCES
|
2023-07-22 09:58:36 +00:00
|
|
|
src/CXX11_shared_spin_lock.cpp
|
2019-06-07 02:33:44 +00:00
|
|
|
src/test/UDPC_UnitTest.cpp
|
2019-10-24 11:25:41 +00:00
|
|
|
src/test/TestTSLQueue.cpp
|
2019-08-27 09:03:30 +00:00
|
|
|
src/test/TestUDPC.cpp
|
2019-06-07 02:33:44 +00:00
|
|
|
)
|
|
|
|
add_executable(UnitTest ${UDPC_UnitTest_SOURCES})
|
2019-12-11 12:24:28 +00:00
|
|
|
target_compile_features(UnitTest PUBLIC cxx_std_11)
|
2020-01-09 07:57:01 +00:00
|
|
|
target_link_libraries(UnitTest PUBLIC UDPC ${GTEST_BOTH_LIBRARIES})
|
2019-06-07 02:33:44 +00:00
|
|
|
target_include_directories(UnitTest PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
|
|
|
endif()
|
2019-06-06 07:02:48 +00:00
|
|
|
|
|
|
|
set(UDPC_NetworkTest_SOURCES
|
2019-11-13 02:47:53 +00:00
|
|
|
src/test/UDPC_NetworkTest.c)
|
2019-06-06 07:02:48 +00:00
|
|
|
add_executable(NetworkTest ${UDPC_NetworkTest_SOURCES})
|
2020-01-09 07:57:01 +00:00
|
|
|
target_link_libraries(NetworkTest PUBLIC UDPC)
|
2019-06-06 07:02:48 +00:00
|
|
|
target_include_directories(NetworkTest PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
|
|
|
endif()
|
|
|
|
|
2020-01-09 07:57:01 +00:00
|
|
|
install(TARGETS UDPC DESTINATION lib)
|
2019-06-06 07:02:48 +00:00
|
|
|
install(FILES
|
2020-01-09 07:57:01 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/UDPC.h
|
2019-06-06 07:02:48 +00:00
|
|
|
DESTINATION include)
|