123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- ' Copyright (c) 2024 Bruce A Henderson
- '
- ' This software is provided 'as-is', without any express or implied
- ' warranty. In no event will the authors be held liable for any damages
- ' arising from the use of this software.
- '
- ' Permission is granted to anyone to use this software for any purpose,
- ' including commercial applications, and to alter it and redistribute it
- ' freely, subject to the following restrictions:
- '
- ' 1. The origin of this software must not be misrepresented; you must not
- ' claim that you wrote the original software. If you use this software
- ' in a product, an acknowledgment in the product documentation would be
- ' appreciated but is not required.
- '
- ' 2. Altered source versions must be plainly marked as such, and must not be
- ' misrepresented as being the original software.
- '
- ' 3. This notice may not be removed or altered from any source
- ' distribution.
- '
- SuperStrict
- Import "raylib/src/external/glfw/include/*.h"
- Import "raylib/src/*.h"
- Import "raylib/src/rcore.c"
- Import "raylib/src/rshapes.c"
- Import "raylib/src/rtextures.c"
- Import "raylib/src/rmodels.c"
- ' Import "raylib/src/rglfw.c"
- Import "raylib/src/rtext.c"
- Import "raylib/src/utils.c"
- ?macos
- Import "raylib/src/external/glfw/src/cocoa_init.m"
- Import "raylib/src/external/glfw/src/cocoa_joystick.m"
- Import "raylib/src/external/glfw/src/cocoa_monitor.m"
- Import "raylib/src/external/glfw/src/cocoa_time.c"
- Import "raylib/src/external/glfw/src/cocoa_window.m"
- Import "raylib/src/external/glfw/src/nsgl_context.m"
- ?
- Import "raylib/src/external/glfw/src/context.c"
- Import "raylib/src/external/glfw/src/egl_context.c"
- ?linux
- Import "raylib/src/external/glfw/src/glx_context.c"
- ?
- Import "raylib/src/external/glfw/src/init.c"
- Import "raylib/src/external/glfw/src/input.c"
- ?linux
- Import "raylib/src/external/glfw/src/linux_joystick.c"
- Import "raylib/src/external/glfw/src/posix_time.c"
- ?
- Import "raylib/src/external/glfw/src/monitor.c"
- 'Import "raylib/src/external/glfw/src/null_init.c"
- 'Import "raylib/src/external/glfw/src/null_joystick.c"
- 'Import "raylib/src/external/glfw/src/null_monitor.c"
- 'Import "raylib/src/external/glfw/src/null_window.c"
- Import "raylib/src/external/glfw/src/osmesa_context.c"
- Import "raylib/src/external/glfw/src/platform.c"
- ?linux Or macos
- Import "raylib/src/external/glfw/src/posix_module.c"
- Import "raylib/src/external/glfw/src/posix_thread.c"
- ?
- Import "raylib/src/external/glfw/src/vulkan.c"
- ?win32
- Import "raylib/src/external/glfw/src/wgl_context.c"
- Import "raylib/src/external/glfw/src/win32_init.c"
- Import "raylib/src/external/glfw/src/win32_joystick.c"
- Import "raylib/src/external/glfw/src/win32_module.c"
- Import "raylib/src/external/glfw/src/win32_monitor.c"
- Import "raylib/src/external/glfw/src/win32_thread.c"
- Import "raylib/src/external/glfw/src/win32_time.c"
- Import "raylib/src/external/glfw/src/win32_window.c"
- ?
- Import "raylib/src/external/glfw/src/window.c"
- ?linux
- 'Import "raylib/src/external/glfw/src/wl_init.c"
- 'Import "raylib/src/external/glfw/src/wl_monitor.c"
- 'Import "raylib/src/external/glfw/src/wl_window.c"
- Import "raylib/src/external/glfw/src/x11_init.c"
- Import "raylib/src/external/glfw/src/x11_monitor.c"
- Import "raylib/src/external/glfw/src/x11_window.c"
- Import "raylib/src/external/glfw/src/xkb_unicode.c"
- ?
- Import "glue.c"
|