mirror of
https://github.com/qicosmos/rest_rpc.git
synced 2026-08-29 08:34:47 +08:00
11 lines
238 B
CMake
11 lines
238 B
CMake
# Compile Standard
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
add_compile_options("$<$<CXX_COMPILER_ID:MSVC>:/bigobj>")
|
|
|
|
# Build Type
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
set(CMAKE_BUILD_TYPE "Release")
|
|
endif()
|
|
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
|