2024-03-19 20:02:20 +01:00
|
|
|
cmake_minimum_required(VERSION 3.0)
|
|
|
|
|
|
|
|
project(quik_stbi LANGUAGES C VERSION 1.0)
|
|
|
|
|
2024-04-06 14:58:05 +02:00
|
|
|
if (NOT ("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin"))
|
2024-06-01 13:22:41 +02:00
|
|
|
add_compile_options(-static-libgcc -static-libstdc++ -fno-exceptions)
|
2024-04-06 14:58:05 +02:00
|
|
|
endif()
|
2024-03-19 20:02:20 +01:00
|
|
|
|
|
|
|
add_library(stbi SHARED "quik_stbi.c")
|
|
|
|
install(
|
|
|
|
TARGETS stbi
|
|
|
|
RUNTIME DESTINATION .
|
|
|
|
LIBRARY DESTINATION .)
|