aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
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
index 52e842f..dd79d29 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -2,6 +2,13 @@ add_rules("mode.debug", "mode.release")
set_languages("c++23")
+add_requireconfs("*", { debug = is_mode("debug") })
+add_requires("glfw")
+add_requires("imgui", {configs = {glfw = true, opengl3 = true}})
+
target("sand-physics")
set_kind("binary")
+
+ add_packages("glfw", "opengl", "imgui")
+
add_files("src/**.cpp")