This commit is contained in:
Zengtudor 2025-02-05 10:38:22 +08:00
parent bc00b281ed
commit c5365a5fa0
4 changed files with 29 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/build

View File

27
CMakeLists.txt Normal file
View File

@ -0,0 +1,27 @@
cmake_minimum_required(VERSION 3.15)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
add_compile_options(-Wall)
set(CMAKE_CXX_STANDARD 20)
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(alg2025)
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()

1
src/2/day1.md Normal file
View File

@ -0,0 +1 @@
GCD CRT