kuiper-engine/thirdparty/stb/CMakeLists.txt
Adam Macdonald a8d8b9b9ab
All checks were successful
Build (Arch Linux) / build (push) Successful in 3m10s
initial commit
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/")