Initial commit
This commit is contained in:
commit
fb17f39bb1
15 changed files with 932 additions and 0 deletions
8
CMakeLists.txt
Normal file
8
CMakeLists.txt
Normal file
|
@ -0,0 +1,8 @@
|
|||
cmake_minimum_required(VERSION 3.28)
|
||||
project({{project-name}} LANGUAGES CXX)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
|
||||
file(GLOB_RECURSE SOURCES "src/*.cpp" "src/*.h" "src/*.hpp" "src/*.c")
|
||||
|
||||
add_executable(${PROJECT_NAME} ${SOURCES})
|
Loading…
Add table
Add a link
Reference in a new issue