fubark / cosmic

A platform for computing and creating applications.
https://cosmic.ooo
MIT License
343 stars 16 forks source link

Build on Windows fails due to missing SDL2 files #47

Closed TheRealDxRed closed 1 year ago

TheRealDxRed commented 1 year ago

The following build.zig based on graphics/README.md fails to build due to SDL2 missing several files:

const graphics = @import("lib/cosmic/graphics/lib.zig");
const backend = @import("lib/cosmic/platform/backend.zig");
const std = @import("std");
const Builder = std.build.Builder;

pub fn build(b: *Builder) void {
    const target = b.standardTargetOptions(.{});
    const mode = b.standardReleaseOptions();

    const exe_hello_cosmic = b.addExecutable("hello_cosmic", "src/main.zig");
    exe_hello_cosmic.setTarget(target);
    exe_hello_cosmic.setBuildMode(mode);
    exe_hello_cosmic.install();

    const graphics_backend = backend.getGraphicsBackend(exe_hello_cosmic);
    graphics.addPackage(exe_hello_cosmic, .{ .graphics_backend = graphics_backend });
    graphics.buildAndLink(exe_hello_cosmic, .{ .graphics_backend = graphics_backend });

    const cmd_run = exe_hello_cosmic.run();
    const step_run = b.step("run", "Run the program");
    step_run.dependOn(&cmd_run.step);
}
"zig build" output ``` error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_luna.c:31:10: fatal error: 'SDL_hidapi_rumble.h' file not found error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_xbox360.c:32:10: fatal error: 'SDL_hidapi_rumble.h' file not found error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\virtual\SDL_virtualjoystick.c:28:10: fatal error: 'SDL_virtualjoystick_c.h' file not found error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_ps5.c:33:10: fatal error: 'SDL_hidapi_rumble.h' file not found error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_gamecube.c:34:10: fatal error: 'SDL_hidapi_rumble.h' file not found error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_xboxone.c:32:10: fatal error: 'SDL_hidapi_rumble.h' file not found error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_ps4.c:36:10: fatal error: 'SDL_hidapi_rumble.h' file not found error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_switch.c:36:10: fatal error: 'SDL_hidapi_rumble.h' file not found error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_xbox360w.c:32:10: fatal error: 'SDL_hidapi_rumble.h' file not found error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_stadia.c:31:10: fatal error: 'SDL_hidapi_rumble.h' file not found Compile C Objects [55/145] SDL_hidapi_xbox360w.c... error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapijoystick.c:32:10: fatal error: 'SDL_hidapi_rumble.h' file not found Compile C Objects [61/145] SDL_nullvideo.c... error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\SDL.c:24:10: fatal error: 'core/windows/SDL_windows.h' file not found Compile C Objects [67/145] SDL_gamecontroller.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy\SDL_nullframebuffer.c:25: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy/../SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy/../SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [68/145] SDL_joystick.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy\SDL_nullevents.c:28: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy/../../events/SDL_events_c.h:30: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy/../../events/../video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy/../../events/../video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_rumble.c:30:10: fatal error: 'SDL_hidapi_rumble.h' file not found eIn file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy\SDL_nullvideo.c:42: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy/../SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy/../SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [79/145] SDL_clipboard.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\SDL_gamecontroller.c:35: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick/../events/SDL_events_c.h:30: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick/../events/../video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick/../events/../video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [81/145] SDL_fillrect.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\SDL_joystick.c:32: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick/../events/SDL_events_c.h:30: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick/../events/../video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick/../events/../video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [82/145] SDL_video.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_blit_1.c:27: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [83/145] SDL_pixels.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_blit.c:24: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [85/145] SDL_RLEaccel.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_clipboard.c:24: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_egl.c:26:10: fatal error: '../core/windows/SDL_windows.h' file not found error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_video.c:27: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [88/145] SDL_surface.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_pixels.c:27: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [91/145] SDL_timer.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\SDL_thread.c:26: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread/SDL_thread_c.h:34:10: fatal error: 'windows/SDL_systhread_c.h' file not found Compile C Objects [92/145] SDL_thread.c... error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\stdlib\SDL_getenv.c:29:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [95/145] SDL_getenv.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_shape.c:25: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [103/145] SDL_sensor.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\timer\SDL_timer.c:27: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\timer/../thread/SDL_systhread.h:29: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\timer/../thread/SDL_thread_c.h:34:10: fatal error: 'windows/SDL_systhread_c.h' file not found Compile C Objects [109/145] SDL_hidapi.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_vulkan_utils.c:23: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [111/145] SDL_rwops.c... error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\file\SDL_rwops.c:34:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [113/145] SDL_clipboardevents.c... error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\hidapi\SDL_hidapi.c:41:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [114/145] SDL_displayevents.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_RLEaccel.c:91: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [115/145] SDL_dropevents.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_surface.c:24: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [116/145] SDL_events.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\sensor\SDL_sensor.c:31: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\sensor/../events/SDL_events_c.h:30: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\sensor/../events/../video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\sensor/../events/../video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [117/145] SDL_gesture.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_events.c:28: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/SDL_events_c.h:30: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [118/145] SDL_keyboard.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_displayevents.c:26: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/SDL_events_c.h:30: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [119/145] SDL_mouse.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_dropevents.c:26: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/SDL_events_c.h:30: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [120/145] SDL_quit.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_keyboard.c:28: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/SDL_events_c.h:30: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [121/145] SDL_touch.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_clipboardevents.c:26: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/SDL_events_c.h:30: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [123/145] SDL_dynapi.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_gesture.c:28: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/SDL_events_c.h:30: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [124/145] SDL_cpuinfo.c... error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\disk\SDL_diskaudio.c:35:10: fatal error: 'SDL_diskaudio.h' file not found Compile C Objects [127/145] SDL_diskaudio.c... error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\cpuinfo\SDL_cpuinfo.c:28:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [132/145] SDL_mixer.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_mouse.c:28: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/SDL_events_c.h:30: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [135/145] SDL_spinlock.c... error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\atomic\SDL_spinlock.c:24:10: fatal error: '../core/windows/SDL_windows.h' file not found error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_windowevents.c:26: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/SDL_events_c.h:30: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [140/145] SDL_log.c... error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\SDL_log.c:24:10: fatal error: 'core/windows/SDL_windows.h' file not found Compile C Objects [141/145] SDL_log.c... error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\SDL_audio.c:29: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio/../thread/SDL_systhread.h:29: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio/../thread/SDL_thread_c.h:34:10: fatal error: 'windows/SDL_systhread_c.h' file not found Compile C Objects [142/145] error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_quit.c:32: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/SDL_events_c.h:30: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found Compile C Objects [143/145] error(compilation): clang failed with stderr: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_touch.c:26: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/SDL_events_c.h:30: In file included from C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_sysvideo.h:31: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events/../video/SDL_vulkan_internal.h:51:10: fatal error: '../core/windows/SDL_windows.h' file not found error(compilation): clang failed with stderr: C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\SDL_assert.c:24:10: fatal error: 'core/windows/SDL_windows.h' file not found C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\filesystem\windows\SDL_sysfilesystem.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\generic\SDL_systhread.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\loadso\windows\SDL_sysloadso.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\generic\SDL_sysmutex.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\generic\SDL_syscond.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\generic\SDL_syssem.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\generic\SDL_systls.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\windows\SDL_syssem.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\windows\SDL_systhread.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\windows\SDL_syscond_cv.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\windows\SDL_sysmutex.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\timer\windows\SDL_systimer.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\windows\SDL_systls.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\wasapi\SDL_wasapi_win32.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\directsound\SDL_directsound.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\winmm\SDL_winmm.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\haptic\windows\SDL_dinputhaptic.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\wasapi\SDL_wasapi.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\haptic\windows\SDL_xinputhaptic.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\haptic\windows\SDL_windowshaptic.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\windows\SDL_windowsjoystick.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\windows\SDL_xinputjoystick.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\windows\SDL_windows_gaming_input.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\windows\SDL_rawinputjoystick.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\windows\SDL_dinputjoystick.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsmessagebox.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsopengl.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsmouse.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsframebuffer.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsvulkan.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsshape.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowswindow.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowskeyboard.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsevents.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsvideo.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsopengles.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsclipboard.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsmodes.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\power\windows\SDL_syspower.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\sensor\windows\SDL_windowssensor.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\locale\windows\SDL_syslocale.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\misc\windows\SDL_sysurl.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\core\windows\SDL_hid.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\core\windows\SDL_windows.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\core\windows\SDL_xinput.c:1:1: error: unable to build C object: FileNotFound C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_luna.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_xbox360.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\virtual\SDL_virtualjoystick.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_ps5.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_gamecube.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_xboxone.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_ps4.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_switch.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_xbox360w.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_stadia.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapijoystick.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\SDL.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy\SDL_nullframebuffer.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy\SDL_nullevents.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_rumble.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy\SDL_nullvideo.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\SDL_gamecontroller.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\SDL_joystick.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_blit_1.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_blit.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_clipboard.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_egl.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_video.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_pixels.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\SDL_thread.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\stdlib\SDL_getenv.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_shape.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\timer\SDL_timer.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_vulkan_utils.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\file\SDL_rwops.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\hidapi\SDL_hidapi.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_RLEaccel.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_surface.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\sensor\SDL_sensor.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_events.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_displayevents.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_dropevents.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_keyboard.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_clipboardevents.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_gesture.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\disk\SDL_diskaudio.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\cpuinfo\SDL_cpuinfo.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_mouse.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\atomic\SDL_spinlock.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_windowevents.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\SDL_log.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\SDL_audio.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_quit.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_touch.c:1:1: error: unable to build C object: clang exited with code 1 C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\SDL_assert.c:1:1: error: unable to build C object: clang exited with code 1 error: sdl2... error: The following command exited with error code 1: C:\Users\bendu\scoop\apps\zig-dev\current\zig.exe build-lib -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\SDL_log.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\SDL_hints.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\SDL_error.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\SDL_dataqueue.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\SDL.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\SDL_assert.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\SDL_list.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\SDL_utils.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\SDL_guid.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\atomic\SDL_spinlock.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\atomic\SDL_atomic.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\SDL_wave.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\SDL_mixer.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\SDL_audiotypecvt.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\SDL_audiodev.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\SDL_audiocvt.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\SDL_audio.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\disk\SDL_diskaudio.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\dsp\SDL_dspaudio.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\sndio\SDL_sndioaudio.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\cpuinfo\SDL_cpuinfo.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\dynapi\SDL_dynapi.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_windowevents.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_touch.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_quit.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_mouse.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_keyboard.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_gesture.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_events.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_dropevents.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_displayevents.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\SDL_clipboardevents.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\events\imKStoUCS.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\file\SDL_rwops.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\haptic\SDL_haptic.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\hidapi\SDL_hidapi.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\locale\SDL_locale.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\misc\SDL_url.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\power\SDL_power.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\render\SDL_yuv_sw.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\render\SDL_render.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\sensor\SDL_sensor.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\stdlib\SDL_strtokr.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\stdlib\SDL_stdlib.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\stdlib\SDL_qsort.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\stdlib\SDL_memcpy.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\stdlib\SDL_memset.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\stdlib\SDL_malloc.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\stdlib\SDL_iconv.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\stdlib\SDL_getenv.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\stdlib\SDL_crc32.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\stdlib\SDL_string.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\SDL_thread.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\timer\SDL_timer.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_yuv.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_vulkan_utils.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_surface.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_stretch.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_shape.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_RLEaccel.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_rect.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_pixels.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_video.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_fillrect.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_egl.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_bmp.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_clipboard.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_blit_slow.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_blit_N.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_blit_copy.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_blit_auto.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_blit_A.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_blit.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_blit_0.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\SDL_blit_1.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\yuv2rgb\yuv_rgb.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\SDL_joystick.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\SDL_gamecontroller.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\controller_type.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\dummy\SDL_dummyaudio.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\sensor\dummy\SDL_dummysensor.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\haptic\dummy\SDL_syshaptic.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\dummy\SDL_sysjoystick.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy\SDL_nullvideo.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy\SDL_nullframebuffer.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\dummy\SDL_nullevents.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\steam\SDL_steamcontroller.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_rumble.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapijoystick.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_xbox360w.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_switch.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_steam.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_stadia.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_ps4.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_xboxone.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_xbox360.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_gamecube.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_ps5.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\hidapi\SDL_hidapi_luna.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\virtual\SDL_virtualjoystick.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\core\windows\SDL_xinput.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\core\windows\SDL_windows.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\core\windows\SDL_hid.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\misc\windows\SDL_sysurl.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\locale\windows\SDL_syslocale.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\sensor\windows\SDL_windowssensor.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\power\windows\SDL_syspower.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsmodes.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsclipboard.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsopengles.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsevents.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsvideo.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowskeyboard.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsshape.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowswindow.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsvulkan.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsmouse.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsopengl.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsframebuffer.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\video\windows\SDL_windowsmessagebox.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\windows\SDL_rawinputjoystick.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\windows\SDL_dinputjoystick.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\windows\SDL_xinputjoystick.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\windows\SDL_windows_gaming_input.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\joystick\windows\SDL_windowsjoystick.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\haptic\windows\SDL_windowshaptic.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\haptic\windows\SDL_xinputhaptic.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\haptic\windows\SDL_dinputhaptic.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\winmm\SDL_winmm.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\directsound\SDL_directsound.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\wasapi\SDL_wasapi.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\audio\wasapi\SDL_wasapi_win32.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\timer\windows\SDL_systimer.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\windows\SDL_sysmutex.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\windows\SDL_systhread.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\windows\SDL_syssem.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\windows\SDL_systls.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\windows\SDL_syscond_cv.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\generic\SDL_systls.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\generic\SDL_syssem.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\generic\SDL_sysmutex.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\generic\SDL_systhread.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\thread\generic\SDL_syscond.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\loadso\windows\SDL_sysloadso.c -cflags -DSDL_RENDER_DISABLED=1 -- C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\src\filesystem\windows\SDL_sysfilesystem.c -lc --cache-dir C:\Users\bendu\Projects\hello_cosmic\zig-cache --global-cache-dir C:\Users\bendu\AppData\Local\zig --name sdl2 -static -I C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl -I C:\Users\bendu\Projects\hello_cosmic\lib\cosmic\lib\sdl\vendor\include --enable-cache error: the following build command failed with exit code 1: C:\Users\bendu\Projects\hello_cosmic\zig-cache\o\cb8cda109d7a12101e1141e6dd840492\build.exe C:\Users\bendu\scoop\apps\zig-dev\current\zig.exe C:\Users\bendu\Projects\hello_cosmic C:\Users\bendu\Projects\hello_cosmic\zig-cache C:\Users\bendu\AppData\Local\zig ```

Is the README outdated, or have I done something else wrong? I have cosmic Cloned as a git submodule under lib/

Edit: linked the wrong README, issue persists nonetheless

fubark commented 1 year ago

I will take a look at this tomorrow. The first thing is upgrading Zig to stage2 (It's still on stage1 😅)

fubark commented 1 year ago

This should be working now on Windows. The CI is broken for a different reason related to Cosmic the app.

TheRealDxRed commented 1 year ago

Build works fine now, thanks for the help!