Merge branch 'master' of https://github.com/raysan5/raylib
This commit is contained in:
commit
67a1e84859
2 changed files with 11 additions and 9 deletions
|
@ -89,7 +89,7 @@ Detailed changes:
|
||||||
[examples] ADDED: core_custom_frame_control
|
[examples] ADDED: core_custom_frame_control
|
||||||
[examples] ADDED: core_basic_screen_manager
|
[examples] ADDED: core_basic_screen_manager
|
||||||
[examples] ADDED: core_split_screen (#1806) by @JeffM2501
|
[examples] ADDED: core_split_screen (#1806) by @JeffM2501
|
||||||
[examples] ADDED: core_2d_camera_smooth_pixelperfect (#1771) by @NotManyIdeasDev
|
[examples] ADDED: core_smooth_pixelperfect (#1771) by @NotManyIdeasDev
|
||||||
[examples] ADDED: shaders_texture_outline (#1883) by @GoldenThumbs
|
[examples] ADDED: shaders_texture_outline (#1883) by @GoldenThumbs
|
||||||
[examples] ADDED: models_loading_vox (#1940) by @procfxgen
|
[examples] ADDED: models_loading_vox (#1940) by @procfxgen
|
||||||
[examples] REMOVED: models_material_pbr
|
[examples] REMOVED: models_material_pbr
|
||||||
|
|
|
@ -25,14 +25,16 @@ pub fn build(b: *std.build.Builder) void {
|
||||||
|
|
||||||
raylib.addIncludeDir("external/glfw/include");
|
raylib.addIncludeDir("external/glfw/include");
|
||||||
|
|
||||||
raylib.addCSourceFile("rcore.c", raylib_flags);
|
raylib.addCSourceFiles(&.{
|
||||||
raylib.addCSourceFile("rmodels.c", raylib_flags);
|
"raudio.c",
|
||||||
raylib.addCSourceFile("raudio.c", raylib_flags);
|
"rcore.c",
|
||||||
raylib.addCSourceFile("rshapes.c", raylib_flags);
|
"rglfw.c",
|
||||||
raylib.addCSourceFile("rtext.c", raylib_flags);
|
"rmodels.c",
|
||||||
raylib.addCSourceFile("rtextures.c", raylib_flags);
|
"rshapes.c",
|
||||||
raylib.addCSourceFile("utils.c", raylib_flags);
|
"rtext.c",
|
||||||
raylib.addCSourceFile("rglfw.c", raylib_flags);
|
"rtextures.c",
|
||||||
|
"utils.c",
|
||||||
|
}, raylib_flags);
|
||||||
|
|
||||||
switch (raylib.target.toTarget().os.tag) {
|
switch (raylib.target.toTarget().os.tag) {
|
||||||
.windows => {
|
.windows => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue