aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2025-04-21 14:35:44 -0700
committerrtk0c <[email protected]>2025-04-21 14:35:44 -0700
commit75585f4fb6f312195a47b16224d45e671858dac7 (patch)
tree3076d8560c74fc3df2178393e796f01459ed731e /xmake.lua
parent61db693beadde269b74656d5bed8472c3114b6d3 (diff)
Initial xmake C++ project
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/xmake.lua b/xmake.lua
new file mode 100644
index 0000000..52e842f
--- /dev/null
+++ b/xmake.lua
@@ -0,0 +1,7 @@
+add_rules("mode.debug", "mode.release")
+
+set_languages("c++23")
+
+target("sand-physics")
+ set_kind("binary")
+ add_files("src/**.cpp")