diff options
author | rtk0c <[email protected]> | 2025-04-24 12:25:33 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2025-04-24 12:25:33 -0700 |
commit | d5fd02d8eb387b477678ffbfb44303a38c105607 (patch) | |
tree | ef706d91dbcd8cd345034e791b7be9076d0897a8 /xmake.lua | |
parent | 75585f4fb6f312195a47b16224d45e671858dac7 (diff) |
Some draft ideas on simulation
Diffstat (limited to 'xmake.lua')
-rw-r--r-- | xmake.lua | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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") |