This commit is contained in:
Zengtudor 2024-09-01 15:47:36 +08:00
parent 567265d075
commit eaf0a6092a
3 changed files with 13 additions and 0 deletions

3
.gitignore vendored
View File

@ -1,3 +1,6 @@
/.vscode
/.xmake
/build
# ---> C++ # ---> C++
# Prerequisites # Prerequisites
*.d *.d

3
src/c1/main.cpp Normal file
View File

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

7
xmake.lua Normal file
View File

@ -0,0 +1,7 @@
add_rules("mode.release","mode.debug")
add_requires("glfw","glad","glm")
add_packages("glfw","glad","glm")
target("c1")
add_files("src/c1/*.cpp")