All checks were successful
Build (Arch Linux) / build (push) Successful in 3m10s
10 lines
203 B
CMake
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/")
|