2025-04-16 01:58:29 +01:00

10 lines
203 B
CMake

cmake_minimum_required(VERSION 3.10)
project(
stb
LANGUAGES C
)
add_library(stb src/stb_image.c src/stb_image_write.c src/stb_image_resize2.c)
target_include_directories(stb PUBLIC "include/")