update
This commit is contained in:
parent
ffcd5331b5
commit
c6a657e7d8
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +1,6 @@
|
||||
/build
|
||||
/*.txt
|
||||
!/CMakeLists.txt
|
||||
# ---> C++
|
||||
# Prerequisites
|
||||
*.d
|
||||
|
27
CMakeLists.txt
Executable file
27
CMakeLists.txt
Executable 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()
|
Loading…
Reference in New Issue
Block a user