diff options
author | omnisci3nce <17525998+omnisci3nce@users.noreply.github.com> | 2024-04-03 22:42:24 +1100 |
---|---|---|
committer | omnisci3nce <17525998+omnisci3nce@users.noreply.github.com> | 2024-04-03 22:42:24 +1100 |
commit | 0c770ecad71bb540d36402311e01a2b6b94242fd (patch) | |
tree | 13a44e693a4faf67be065d6b334b149a59aa0262 /xmake.lua | |
parent | de14e6eef443c9935fda5fccc798e379e710bf31 (diff) |
load gltf vertices and indices. need to move to git LFS!
Diffstat (limited to 'xmake.lua')
-rw-r--r-- | xmake.lua | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -68,6 +68,7 @@ target("core_config") set_kind("static") -- kind is required but you can ignore it since it's just for common settings add_syslinks("dl") add_packages("local_glfw") + add_includedirs("deps/cgltf", {public = true}) add_includedirs("deps/glfw-3.3.8/include/GLFW", {public = true}) add_includedirs("deps/glad/include", {public = true}) add_includedirs("deps/stb_image", {public = true}) @@ -118,6 +119,13 @@ target("obj") add_files("examples/obj_loading/ex_obj_loading.c") set_rundir("$(projectdir)") +target("gltf") + set_kind("binary") + set_group("examples") + add_deps("core_static") + add_files("examples/gltf_loading/ex_gltf_loading.c") + set_rundir("$(projectdir)") + target("demo") set_kind("binary") set_group("examples") |