mirror of
https://github.com/celisej567/mcpe.git
synced 2026-01-04 14:09:47 +03:00
7 lines
171 B
CMake
7 lines
171 B
CMake
cmake_minimum_required(VERSION 3.16.0)
|
|
project(stb_image)
|
|
|
|
# Build
|
|
add_library(stb_image STATIC src/stb_image_impl.c)
|
|
target_include_directories(stb_image PUBLIC include)
|