algorithm_2024/CMakeLists.txt

15 lines
328 B
CMake
Raw Normal View History

2024-10-01 03:00:53 +00:00
cmake_minimum_required(VERSION 3.10)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
2024-10-01 03:11:04 +00:00
add_compile_options(-Wall)
if("${CMAKE_BUILD_TYPE}" STREQUAL "Release")
2024-10-01 03:11:53 +00:00
message("Is in [Release] mode")
2024-10-01 03:11:04 +00:00
else()
2024-10-01 03:11:53 +00:00
message("Is in [NotRelease] mode")
2024-10-01 03:11:04 +00:00
endif()
2024-10-01 03:00:53 +00:00
project(alogrithm_2024)
add_executable(P1031 ${CMAKE_CURRENT_LIST_DIR}/P1031/main.cpp)