mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
27 lines
1 KiB
CMake
27 lines
1 KiB
CMake
# libPNG
|
|
# Select the version of libpng to use, default is builtin
|
|
if (NOT USE_SYSTEM_LIBPNG)
|
|
# We use libpng's static library and don't need to build the shared library and run the tests
|
|
set(PNG_SHARED OFF CACHE BOOL "Build shared lib")
|
|
set(PNG_TESTS OFF CACHE BOOL "Build libpng tests")
|
|
set(SKIP_INSTALL_ALL ON)
|
|
|
|
if (NOT USE_SYSTEM_ZLIB AND MSVC)
|
|
set(CMAKE_C_FLAGS ${CMAKE_C_FLAGS} /I${CMAKE_CURRENT_BINARY_DIR}/../zlib/zlib /I${CMAKE_CURRENT_SOURCE_DIR}/../zlib/zlib)
|
|
endif()
|
|
|
|
add_subdirectory(libpng EXCLUDE_FROM_ALL)
|
|
target_include_directories(png_static INTERFACE "${libpng_BINARY_DIR}" "${libpng_SOURCE_DIR}")
|
|
|
|
set(LIBPNG_TARGET png_static PARENT_SCOPE)
|
|
else()
|
|
find_package(PNG REQUIRED)
|
|
|
|
add_library(3rdparty_system_libpng INTERFACE)
|
|
target_include_directories(3rdparty_system_libpng INTERFACE ${PNG_INCLUDE_DIR})
|
|
target_link_libraries(3rdparty_system_libpng INTERFACE ${PNG_LIBRARY})
|
|
target_compile_definitions(3rdparty_system_libpng INTERFACE ${PNG_DEFINITIONS})
|
|
|
|
set(LIBPNG_TARGET 3rdparty_system_libpng PARENT_SCOPE)
|
|
endif()
|