This commit is contained in:
Colton Staiduhar
2026-03-29 15:06:21 -04:00
commit 9f27ee55f6
3 changed files with 7791 additions and 0 deletions

9
CMakeLists.txt Executable file
View File

@@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.6)
project(stb_image)
add_library(stb_image)
target_sources(stb_image PRIVATE "src/stb_image")
target_include_directories(stb_image PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include/")

7780
include/stb_image/stb_image.h Executable file

File diff suppressed because it is too large Load Diff

2
src/stb_image.cpp Executable file
View File

@@ -0,0 +1,2 @@
#define STB_IMAGE_IMPLEMENTATION
#include <stb_image/stb_image.h>