Files
rest_rpc/cmake/build.cmake
T
2024-01-21 16:36:47 +08:00

9 lines
214 B
CMake

# Compile Standard
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread -std=c++11")
# Build Type
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release")
endif()
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")