mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-07-14 18:21:58 -04:00
Separate splash background and logo
- Ported empy_lot.xml and empy_lot_fso.xml to JSON format
This commit is contained in:
parent
027aa6ce73
commit
77a44a6c31
9 changed files with 11504 additions and 21 deletions
|
@ -36,12 +36,14 @@ pub fn build(b: *std.Build) void {
|
|||
|
||||
const raylib = raylib_dep.module("raylib"); // main raylib module
|
||||
const raylib_math = raylib_dep.module("raylib-math"); // raymath module
|
||||
// const raylib_gui = raylib_dep.module("raylib-gui"); // raylib gui
|
||||
const rlgl = raylib_dep.module("rlgl"); // rlgl module
|
||||
const raylib_artifact = raylib_dep.artifact("raylib"); // raylib C library
|
||||
|
||||
exe.linkLibrary(raylib_artifact);
|
||||
exe.root_module.addImport("raylib", raylib);
|
||||
exe.root_module.addImport("raylib-math", raylib_math);
|
||||
// exe.root_module.addImport("raylib-gui", raylib_gui);
|
||||
exe.root_module.addImport("rlgl", rlgl);
|
||||
|
||||
// This declares intent for the executable to be installed into the
|
||||
|
@ -83,6 +85,11 @@ pub fn build(b: *std.Build) void {
|
|||
exe_unit_tests.addIncludePath(.{ .path = "./library/libvitaboy" });
|
||||
exe_unit_tests.addIncludePath(.{ .path = "./tools" });
|
||||
|
||||
exe_unit_tests.root_module.addImport("raylib", raylib);
|
||||
exe_unit_tests.root_module.addImport("raylib-math", raylib_math);
|
||||
// exe.root_module.addImport("raylib-gui", raylib_gui);
|
||||
exe_unit_tests.root_module.addImport("rlgl", rlgl);
|
||||
|
||||
const run_exe_unit_tests = b.addRunArtifact(exe_unit_tests);
|
||||
|
||||
// Similar to creating the run step earlier, this exposes a `test` step to
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue