Files
rest_rpc/CMakeLists.txt
2025-10-01 19:16:33 +08:00

14 lines
295 B
CMake

cmake_minimum_required(VERSION 3.5)
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)
endif ()