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/")