This commit is contained in:
Zengtudor 2025-04-04 10:31:23 +08:00
commit d0937de2c8
3 changed files with 11 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
build
.cache

5
CMakeLists.txt Normal file
View File

@ -0,0 +1,5 @@
cmake_minimum_required(VERSION 3.10)
file(GLOB_RECURSE SRC_CPP src/*.cpp)
add_executable(main ${SRC_CPP})

4
src/main.cpp Normal file
View File

@ -0,0 +1,4 @@
#include <iostream>
int main(){
std::cout<<"hello world!\n";
}