This commit is contained in:
Zengtudor 2024-11-24 16:00:22 +08:00
parent ffcd5331b5
commit c6a657e7d8
2 changed files with 30 additions and 0 deletions

3
.gitignore vendored
View File

@ -1,3 +1,6 @@
/build
/*.txt
!/CMakeLists.txt
# ---> C++
# Prerequisites
*.d

27
CMakeLists.txt Executable file
View File

@ -0,0 +1,27 @@
cmake_minimum_required(VERSION 3.10)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
add_compile_options(-Wall)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Debug)
endif()
message("Build type is [${CMAKE_BUILD_TYPE}]")
project(algorithm2024cpp17)
include_directories(${CMAKE_CURRENT_LIST_DIR}/src/include)
file(GLOB_RECURSE SRC_LIST CONFIGURE_DEPENDS ${CMAKE_CURRENT_LIST_DIR}/src/*.cpp)
foreach(SRC IN LISTS SRC_LIST)
get_filename_component(SRC_NAME_WE ${SRC} NAME_WE)
message("[${SRC}] will be build to [${SRC_NAME_WE}]")
add_executable(${SRC_NAME_WE} ${SRC})
endforeach()