2022-07-24 09:55:57 +00:00
|
|
|
cmake_minimum_required(VERSION 3.0)
|
|
|
|
|
|
|
|
project(spng C)
|
|
|
|
|
2023-04-16 05:57:34 +00:00
|
|
|
add_library(spng STATIC libspng/spng/spng.c)
|
2022-07-24 09:55:57 +00:00
|
|
|
target_compile_definitions(spng PUBLIC SPNG_STATIC)
|
|
|
|
target_link_libraries(spng PUBLIC ZLIB::ZLIB)
|
2023-04-16 05:57:34 +00:00
|
|
|
target_include_directories(spng PUBLIC libspng/spng)
|
2024-03-19 06:08:54 +00:00
|
|
|
dolphin_disable_warnings(spng)
|
2023-04-16 05:57:34 +00:00
|
|
|
add_library(spng::spng ALIAS spng)
|