53 lines
1.6 KiB
CMake
53 lines
1.6 KiB
CMake
project(libpng)
|
|
|
|
# Silence Warnings
|
|
add_compile_options(-w)
|
|
|
|
## LibPNG
|
|
|
|
# Options
|
|
set(PNG_TESTS FALSE CACHE BOOL "" FORCE)
|
|
if(BUILD_NATIVE_COMPONENTS)
|
|
set(PNG_NO_STDIO FALSE CACHE BOOL "" FORCE)
|
|
else()
|
|
set(PNG_NO_STDIO TRUE CACHE BOOL "" FORCE)
|
|
endif()
|
|
if(BUILD_ARM_COMPONENTS)
|
|
set(PNG_STATIC FALSE CACHE BOOL "" FORCE)
|
|
set(PNG_SHARED TRUE CACHE BOOL "" FORCE)
|
|
else()
|
|
set(PNG_STATIC TRUE CACHE BOOL "" FORCE)
|
|
set(PNG_SHARED FALSE CACHE BOOL "" FORCE)
|
|
endif()
|
|
|
|
# Download
|
|
set(ZLIB_LIBRARY zlibstatic)
|
|
set(ZLIB_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../zlib/src" "${CMAKE_CURRENT_BINARY_DIR}/../zlib/src")
|
|
set(CMAKE_POLICY_DEFAULT_CMP0054 OLD) # Silence Warning
|
|
add_subdirectory(src EXCLUDE_FROM_ALL)
|
|
set(CMAKE_POLICY_DEFAULT_CMP0054 NEW) # Re-Enable New Behavior
|
|
if(TARGET png12)
|
|
set_target_properties(png12 PROPERTIES LINK_OPTIONS "LINKER:--version-script=${CMAKE_CURRENT_SOURCE_DIR}/libpng.vers") # Use Symbol Versioning
|
|
set_target_properties(png12 PROPERTIES DEBUG_POSTFIX "") # Fix LibPNG Suffix In Debug Mode
|
|
target_include_directories(png12 PUBLIC src)
|
|
endif()
|
|
if(TARGET png12_static)
|
|
find_library(M_LIBRARY NAMES m REQUIRED)
|
|
target_link_libraries(png12_static "${ZLIB_LIBRARY}" "${M_LIBRARY}")
|
|
target_include_directories(png12_static PUBLIC src)
|
|
else()
|
|
add_library(png12_static ALIAS png12)
|
|
endif()
|
|
|
|
# Ensure Build
|
|
if(TARGET png12)
|
|
add_custom_target(png12-build ALL DEPENDS png12)
|
|
endif()
|
|
if(TARGET png12_static)
|
|
add_custom_target(png12_static-build ALL DEPENDS png12_static)
|
|
endif()
|
|
# Install
|
|
if(TARGET png12)
|
|
install(TARGETS png12 DESTINATION "${MCPI_LIB_DIR}")
|
|
endif()
|