Files
rest_rpc/CMakeLists.txt
T

18 lines
384 B
CMake
Raw Normal View History

2025-09-07 14:06:06 +08:00
cmake_minimum_required(VERSION 3.5)
2024-01-21 16:36:47 +08:00
project(rest_rpc)
include_directories(include)
#the thread library of the system.
find_package(Threads REQUIRED)
include(cmake/build.cmake)
include(cmake/develop.cmake)
if (BUILD_UNIT_TESTS)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/tests)
2025-10-16 10:17:49 +08:00
endif ()
if (BUILD_EXAMPLES)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/examples)
endif ()