Files
rest_rpc/cmake/build.cmake
T
2025-07-23 20:13:00 +08:00

9 lines
179 B
CMake

# Compile Standard
set(CMAKE_CXX_STANDARD 20)
# Build Type
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release")
endif()
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")