ReFuel.StbImage/CMakeLists.txt

14 lines
330 B
CMake
Raw Permalink Normal View History

cmake_minimum_required(VERSION 3.0)
2024-06-14 17:24:38 +02:00
project(rf_stbi LANGUAGES C VERSION 1.0)
2024-04-06 14:58:05 +02:00
if (NOT ("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin"))
add_compile_options(-static-libgcc -static-libstdc++ -fno-exceptions)
2024-04-06 14:58:05 +02:00
endif()
2024-06-14 17:24:38 +02:00
add_library(stbi SHARED "rf_stbi.c")
install(
TARGETS stbi
RUNTIME DESTINATION .
LIBRARY DESTINATION .)