This commit is contained in:
Zengtudor 2024-10-01 11:11:04 +08:00
parent 91fdc3afcc
commit 7dfbb55ae5

View File

@ -1,6 +1,14 @@
cmake_minimum_required(VERSION 3.10)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
add_compile_options(-Wall)
if("${CMAKE_BUILD_TYPE}" STREQUAL "Release")
Message("Is in [Release] mode")
else()
Message("Is in [NotRelease] mode")
endif()
project(alogrithm_2024)