2025-01-13 01:56:35 +01:00
|
|
|
cmake_minimum_required(VERSION 3.14...3.24 FATAL_ERROR)
|
2023-08-01 20:13:38 +02:00
|
|
|
|
|
|
|
project(stb C CXX)
|
|
|
|
|
|
|
|
add_library(stb INTERFACE)
|
|
|
|
target_include_directories(stb SYSTEM INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
|
|
|
|
|
|
add_library(stb_image "stb/stb_image.h" "stb_image.cpp")
|
|
|
|
target_link_libraries(stb_image stb)
|
|
|
|
|
|
|
|
add_library(stb_image_write "stb/stb_image_write.h" "stb_image_write.cpp")
|
|
|
|
target_link_libraries(stb_image_write stb)
|
|
|
|
|