Files
stb_image-CMake/CMakeLists.txt
Colton Staiduhar 9f27ee55f6 Upload
2026-03-29 15:06:21 -04:00

10 lines
225 B
CMake
Executable File

cmake_minimum_required(VERSION 3.6)
project(stb_image)
add_library(stb_image)
target_sources(stb_image PRIVATE "src/stb_image")
target_include_directories(stb_image PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include/")