diff options
author | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-05-11 22:06:55 +1000 |
---|---|---|
committer | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-05-11 22:06:55 +1000 |
commit | 677ab09b0dc3b6d9c872b732f8e31543fa2d11bb (patch) | |
tree | f8aa923eb9d97c561341579fa4e575e4804ad9f4 /xmake.lua | |
parent | 08d7e23fd5ed95953822a72ba11d4b6cd96b2846 (diff) |
WIP: shader data
Diffstat (limited to 'xmake.lua')
-rw-r--r-- | xmake.lua | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -157,6 +157,13 @@ target("tri") add_files("examples/triangle/ex_triangle.c") set_rundir("$(projectdir)") +target("cube") + set_kind("binary") + set_group("examples") + add_deps("core_static") + add_files("examples/cube/ex_cube.c") + set_rundir("$(projectdir)") + -- target("std") -- set_kind("binary") -- set_group("examples") |