sfw/tools/merger/sfw_3rd.x.inl

68 lines
2.0 KiB
Plaintext
Raw Normal View History

2024-01-05 10:09:35 +01:00
// https://github.com/Relintai/sfw
/*
Copyright (c) 2023-present Péter Magyar.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
// TODO gather all licenses to here
2024-01-05 15:23:30 +01:00
#ifdef SFW_3RD_IMPL
2024-01-05 13:22:42 +01:00
#define GLAD_GL_IMPLEMENTATION // glad
2024-01-05 10:09:35 +01:00
#endif
{{FILE:sfw/render_core/3rd_glad.h}}
2024-01-05 15:23:30 +01:00
#ifdef SFW_3RD_IMPL
2024-01-05 10:09:35 +01:00
#define STB_TRUETYPE_IMPLEMENTATION
2024-01-05 13:22:42 +01:00
{{FILE:sfw/render_core/3rd_stb_truetype.h}}
2024-01-05 10:09:35 +01:00
#define STB_IMAGE_IMPLEMENTATION // stbi
#define STB_IMAGE_WRITE_IMPLEMENTATION // stbi_write
#define STB_SPRINTF_IMPLEMENTATION // stb_sprintf
#define STB_SPRINTF_NOUNALIGNED // stb_sprintf
{{FILE:sfw/render_core/3rd_stb_image.h}}
//{//{//FILE:sfw/render_core/stb_image_write.h}}
//---
#undef freelist
#define _GLFW_IMPLEMENTATION // glfw337
#define GLFW_INCLUDE_NONE // glfw337
#ifdef __APPLE__
#define _GLFW_COCOA // glfw osx
#elif defined(_WIN32) || defined(_WIN64)
#define _GLFW_WIN32 // glfw win32
#else
#define _GLFW_X11 // glfw linux, also _GLFW_OSMESA or _GLFW_WAYLAND
#endif
#undef _GNU_SOURCE
{{FILE:sfw/render_core/3rd_glfw3.h}}
#undef timeGetTime
#undef Time
2024-01-05 15:23:30 +01:00
#endif