Files
mcpe/thirdparty/stb_image/CMakeLists.txt
2023-12-19 19:38:17 +02:00

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)