This commit is contained in:
Zengtudor 2024-09-18 14:54:03 +08:00
parent 6510940c76
commit 7d96c74496
3 changed files with 10 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.xmake
.vscode
build

3
src/main.cpp Normal file
View File

@ -0,0 +1,3 @@
int main(){
}

4
xmake.lua Normal file
View File

@ -0,0 +1,4 @@
add_rules("mode.debug","mode.release")
target("dna")
add_files("src/main.cpp")