|
@@ -1,10 +1,11 @@
|
|
# CMakeLists.txt
|
|
# CMakeLists.txt
|
|
|
|
|
|
-# Copyright (c) 2018-2022 Cosmin Truta
|
|
|
|
|
|
+# Copyright (c) 2018-2023 Cosmin Truta
|
|
# Copyright (c) 2007,2009-2018 Glenn Randers-Pehrson
|
|
# Copyright (c) 2007,2009-2018 Glenn Randers-Pehrson
|
|
# Written by Christian Ehrlicher, 2007
|
|
# Written by Christian Ehrlicher, 2007
|
|
# Revised by Roger Lowman, 2009-2010
|
|
# Revised by Roger Lowman, 2009-2010
|
|
# Revised by Clifford Yapp, 2011-2012,2017
|
|
# Revised by Clifford Yapp, 2011-2012,2017
|
|
|
|
+# Revised by Claudio Bley, 2013
|
|
# Revised by Roger Leigh, 2016
|
|
# Revised by Roger Leigh, 2016
|
|
# Revised by Andreas Franek, 2016
|
|
# Revised by Andreas Franek, 2016
|
|
# Revised by Sam Serrels, 2017
|
|
# Revised by Sam Serrels, 2017
|
|
@@ -19,7 +20,11 @@
|
|
# Revised by Owen Rudge, 2020
|
|
# Revised by Owen Rudge, 2020
|
|
# Revised by Gleb Mazovetskiy, 2021
|
|
# Revised by Gleb Mazovetskiy, 2021
|
|
# Revised by Christopher Sean Morrison, 2022
|
|
# Revised by Christopher Sean Morrison, 2022
|
|
|
|
+# Revised by B. Scott Michel, 2022
|
|
|
|
+# Revised by Jeremy Maitin-Shepard, 2022
|
|
# Revised by Martin Storsjo, 2022
|
|
# Revised by Martin Storsjo, 2022
|
|
|
|
+# Revised by Jon Creighton, 2023
|
|
|
|
+# Revised by Gunther Nikl, 2023
|
|
|
|
|
|
# This code is released under the libpng license.
|
|
# This code is released under the libpng license.
|
|
# For conditions of distribution and use, see the disclaimer
|
|
# For conditions of distribution and use, see the disclaimer
|
|
@@ -31,22 +36,47 @@ cmake_policy(VERSION 3.1)
|
|
project(libpng C ASM)
|
|
project(libpng C ASM)
|
|
enable_testing()
|
|
enable_testing()
|
|
|
|
|
|
|
|
+include(CMakeParseArguments)
|
|
|
|
+include(CheckCSourceCompiles)
|
|
|
|
+include(GNUInstallDirs)
|
|
|
|
+
|
|
set(PNGLIB_MAJOR 1)
|
|
set(PNGLIB_MAJOR 1)
|
|
set(PNGLIB_MINOR 6)
|
|
set(PNGLIB_MINOR 6)
|
|
-set(PNGLIB_REVISION 39)
|
|
|
|
|
|
+set(PNGLIB_REVISION 40)
|
|
set(PNGLIB_SUBREVISION 0)
|
|
set(PNGLIB_SUBREVISION 0)
|
|
#set(PNGLIB_SUBREVISION "git")
|
|
#set(PNGLIB_SUBREVISION "git")
|
|
-set(PNGLIB_NAME libpng${PNGLIB_MAJOR}${PNGLIB_MINOR})
|
|
|
|
set(PNGLIB_VERSION ${PNGLIB_MAJOR}.${PNGLIB_MINOR}.${PNGLIB_REVISION})
|
|
set(PNGLIB_VERSION ${PNGLIB_MAJOR}.${PNGLIB_MINOR}.${PNGLIB_REVISION})
|
|
-set(PNGLIB_SHARED_SOVERSION ${PNGLIB_MAJOR}${PNGLIB_MINOR})
|
|
|
|
-set(PNGLIB_SHARED_VERSION ${PNGLIB_SHARED_SOVERSION}.${PNGLIB_REVISION}.${PNGLIB_SUBREVISION})
|
|
|
|
-
|
|
|
|
-include(GNUInstallDirs)
|
|
|
|
|
|
+set(PNGLIB_ABI_VERSION ${PNGLIB_MAJOR}${PNGLIB_MINOR})
|
|
|
|
+set(PNGLIB_SHARED_VERSION ${PNGLIB_ABI_VERSION}.${PNGLIB_REVISION}.${PNGLIB_SUBREVISION})
|
|
|
|
+
|
|
|
|
+# Allow the users to specify an application-specific API prefix for libpng
|
|
|
|
+# vendoring purposes. A standard libpng build should have no such prefix.
|
|
|
|
+set(PNG_PREFIX ""
|
|
|
|
+ CACHE STRING "Prefix to prepend to the API function names")
|
|
|
|
+
|
|
|
|
+# Allow the users to override the postfix appended to debug library file names.
|
|
|
|
+# Previously, we used to set CMAKE_DEBUG_POSTFIX globally. That variable should
|
|
|
|
+# not be cached, however, because doing so would affect all projects processed
|
|
|
|
+# after libpng, in unexpected and undesirable ways.
|
|
|
|
+set(PNG_DEBUG_POSTFIX "d"
|
|
|
|
+ CACHE STRING "Postfix to append to library file names under the Debug configuration")
|
|
|
|
+
|
|
|
|
+# Allow the users to import their own extra configuration settings.
|
|
|
|
+set(DFA_XTRA ""
|
|
|
|
+ CACHE FILEPATH "File containing extra configuration settings")
|
|
|
|
+
|
|
|
|
+# Allow the users to configure the following build options.
|
|
|
|
+option(PNG_SHARED "Build libpng as a shared lib" ON)
|
|
|
|
+option(PNG_STATIC "Build libpng as a static lib" ON)
|
|
|
|
+option(PNG_FRAMEWORK "Build libpng as a Mac OS X framework" OFF)
|
|
|
|
+option(PNG_EXECUTABLES "Build libpng executables" ON)
|
|
|
|
+option(PNG_TESTS "Build libpng tests" ON)
|
|
|
|
+option(PNG_DEBUG "Enable debug output" OFF)
|
|
|
|
+option(PNG_HARDWARE_OPTIMIZATIONS "Enable hardware optimizations" ON)
|
|
|
|
|
|
-# Allow users to specify location of zlib.
|
|
|
|
|
|
+# Allow the users to specify a location of zlib.
|
|
# Useful if zlib is being built alongside this as a sub-project.
|
|
# Useful if zlib is being built alongside this as a sub-project.
|
|
-option(PNG_BUILD_ZLIB "Custom zlib Location, else find_package is used" OFF)
|
|
|
|
-
|
|
|
|
|
|
+option(PNG_BUILD_ZLIB "Custom zlib location, else find_package is used" OFF)
|
|
if(NOT PNG_BUILD_ZLIB)
|
|
if(NOT PNG_BUILD_ZLIB)
|
|
find_package(ZLIB REQUIRED)
|
|
find_package(ZLIB REQUIRED)
|
|
include_directories(${ZLIB_INCLUDE_DIRS})
|
|
include_directories(${ZLIB_INCLUDE_DIRS})
|
|
@@ -62,20 +92,6 @@ else()
|
|
set(M_LIBRARY "")
|
|
set(M_LIBRARY "")
|
|
endif()
|
|
endif()
|
|
|
|
|
|
-# Public CMake configuration variables.
|
|
|
|
-option(PNG_SHARED "Build shared lib" ON)
|
|
|
|
-option(PNG_STATIC "Build static lib" ON)
|
|
|
|
-option(PNG_EXECUTABLES "Build libpng executables" ON)
|
|
|
|
-option(PNG_TESTS "Build libpng tests" ON)
|
|
|
|
-
|
|
|
|
-# Many more configuration options could be added here.
|
|
|
|
-option(PNG_FRAMEWORK "Build OS X framework" OFF)
|
|
|
|
-option(PNG_DEBUG "Build with debug output" OFF)
|
|
|
|
-option(PNG_HARDWARE_OPTIMIZATIONS "Enable hardware optimizations" ON)
|
|
|
|
-
|
|
|
|
-set(PNG_PREFIX "" CACHE STRING "Prefix to add to the API function names")
|
|
|
|
-set(DFA_XTRA "" CACHE FILEPATH "File containing extra configuration settings")
|
|
|
|
-
|
|
|
|
# CMake currently sets CMAKE_SYSTEM_PROCESSOR to one of x86_64 or arm64 on macOS,
|
|
# CMake currently sets CMAKE_SYSTEM_PROCESSOR to one of x86_64 or arm64 on macOS,
|
|
# based upon the OS architecture, not the target architecture. As such, we need
|
|
# based upon the OS architecture, not the target architecture. As such, we need
|
|
# to check CMAKE_OSX_ARCHITECTURES to identify which hardware-specific flags to
|
|
# to check CMAKE_OSX_ARCHITECTURES to identify which hardware-specific flags to
|
|
@@ -220,50 +236,49 @@ endif()
|
|
|
|
|
|
endif(PNG_HARDWARE_OPTIMIZATIONS)
|
|
endif(PNG_HARDWARE_OPTIMIZATIONS)
|
|
|
|
|
|
-# Set PNG_LIB_NAME.
|
|
|
|
-set(PNG_LIB_NAME png${PNGLIB_MAJOR}${PNGLIB_MINOR})
|
|
|
|
-
|
|
|
|
-# Distinguish between debug and release builds.
|
|
|
|
-set(CMAKE_DEBUG_POSTFIX "d")
|
|
|
|
-
|
|
|
|
-include(CheckCSourceCompiles)
|
|
|
|
option(ld-version-script "Enable linker version script" ON)
|
|
option(ld-version-script "Enable linker version script" ON)
|
|
if(ld-version-script AND NOT ANDROID AND NOT APPLE)
|
|
if(ld-version-script AND NOT ANDROID AND NOT APPLE)
|
|
# Check if LD supports linker scripts.
|
|
# Check if LD supports linker scripts.
|
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/conftest.map" "
|
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/conftest.map" "
|
|
-VERS_1 {
|
|
|
|
- global: sym;
|
|
|
|
- local: *;
|
|
|
|
-};
|
|
|
|
-
|
|
|
|
-VERS_2 {
|
|
|
|
- global: sym2;
|
|
|
|
- main;
|
|
|
|
-} VERS_1;
|
|
|
|
|
|
+VERS_1 { global: sym1; local: *; };
|
|
|
|
+VERS_2 { global: sym2; main; } VERS_1;
|
|
")
|
|
")
|
|
- set(CMAKE_REQUIRED_FLAGS_SAVE ${CMAKE_REQUIRED_FLAGS})
|
|
|
|
- set(CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS} "-Wl,--version-script='${CMAKE_CURRENT_BINARY_DIR}/conftest.map'")
|
|
|
|
- check_c_source_compiles("void sym(void) {}
|
|
|
|
|
|
+ set(_SAVED_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
|
|
|
|
+ if(NOT CMAKE_HOST_SYSTEM_NAME MATCHES "^SunOS")
|
|
|
|
+ # Avoid using CMAKE_SHARED_LIBRARY_C_FLAGS in version script checks on
|
|
|
|
+ # Solaris, because of an incompatibility with the Solaris link editor.
|
|
|
|
+ list(APPEND CMAKE_REQUIRED_FLAGS ${CMAKE_SHARED_LIBRARY_C_FLAGS})
|
|
|
|
+ endif()
|
|
|
|
+ list(APPEND CMAKE_REQUIRED_FLAGS "-Wl,--version-script='${CMAKE_CURRENT_BINARY_DIR}/conftest.map'")
|
|
|
|
+ check_c_source_compiles("
|
|
|
|
+void sym1(void) {}
|
|
void sym2(void) {}
|
|
void sym2(void) {}
|
|
-int main(void) {return 0;}
|
|
|
|
|
|
+int main(void) { return 0; }
|
|
" HAVE_LD_VERSION_SCRIPT)
|
|
" HAVE_LD_VERSION_SCRIPT)
|
|
if(NOT HAVE_LD_VERSION_SCRIPT)
|
|
if(NOT HAVE_LD_VERSION_SCRIPT)
|
|
- set(CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS_SAVE} "-Wl,-M -Wl,${CMAKE_CURRENT_BINARY_DIR}/conftest.map")
|
|
|
|
- check_c_source_compiles("void sym(void) {}
|
|
|
|
|
|
+ set(CMAKE_REQUIRED_FLAGS ${_SAVED_CMAKE_REQUIRED_FLAGS})
|
|
|
|
+ if(NOT CMAKE_HOST_SYSTEM_NAME MATCHES "^SunOS")
|
|
|
|
+ # Again, avoid using CMAKE_SHARED_LIBRARY_C_FLAGS in version script
|
|
|
|
+ # checks on Solaris.
|
|
|
|
+ list(APPEND CMAKE_REQUIRED_FLAGS ${CMAKE_SHARED_LIBRARY_C_FLAGS})
|
|
|
|
+ endif()
|
|
|
|
+ list(APPEND CMAKE_REQUIRED_FLAGS "-Wl,-M -Wl,${CMAKE_CURRENT_BINARY_DIR}/conftest.map")
|
|
|
|
+ check_c_source_compiles("
|
|
|
|
+void sym1(void) {}
|
|
void sym2(void) {}
|
|
void sym2(void) {}
|
|
-int main(void) {return 0;}
|
|
|
|
|
|
+int main(void) { return 0; }
|
|
" HAVE_SOLARIS_LD_VERSION_SCRIPT)
|
|
" HAVE_SOLARIS_LD_VERSION_SCRIPT)
|
|
endif()
|
|
endif()
|
|
- set(CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS_SAVE})
|
|
|
|
|
|
+ set(CMAKE_REQUIRED_FLAGS ${_SAVED_CMAKE_REQUIRED_FLAGS})
|
|
file(REMOVE "${CMAKE_CURRENT_BINARY_DIR}/conftest.map")
|
|
file(REMOVE "${CMAKE_CURRENT_BINARY_DIR}/conftest.map")
|
|
endif()
|
|
endif()
|
|
|
|
|
|
# Find symbol prefix. Likely obsolete and unnecessary with recent
|
|
# Find symbol prefix. Likely obsolete and unnecessary with recent
|
|
# toolchains (it's not done in many other projects).
|
|
# toolchains (it's not done in many other projects).
|
|
-function(symbol_prefix)
|
|
|
|
|
|
+function(find_symbol_prefix)
|
|
set(SYMBOL_PREFIX)
|
|
set(SYMBOL_PREFIX)
|
|
|
|
|
|
- execute_process(COMMAND "${CMAKE_C_COMPILER}" "-E" "-"
|
|
|
|
|
|
+ execute_process(COMMAND "${CMAKE_C_COMPILER}" -E -
|
|
INPUT_FILE /dev/null
|
|
INPUT_FILE /dev/null
|
|
OUTPUT_VARIABLE OUT
|
|
OUTPUT_VARIABLE OUT
|
|
RESULT_VARIABLE STATUS)
|
|
RESULT_VARIABLE STATUS)
|
|
@@ -290,7 +305,7 @@ function(symbol_prefix)
|
|
endfunction()
|
|
endfunction()
|
|
|
|
|
|
if(UNIX)
|
|
if(UNIX)
|
|
- symbol_prefix()
|
|
|
|
|
|
+ find_symbol_prefix()
|
|
endif()
|
|
endif()
|
|
|
|
|
|
find_program(AWK NAMES gawk awk)
|
|
find_program(AWK NAMES gawk awk)
|
|
@@ -301,7 +316,7 @@ if(NOT AWK OR ANDROID OR IOS)
|
|
# No awk available to generate sources; use pre-built pnglibconf.h
|
|
# No awk available to generate sources; use pre-built pnglibconf.h
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/pnglibconf.h.prebuilt
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/pnglibconf.h.prebuilt
|
|
${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h)
|
|
${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h)
|
|
- add_custom_target(genfiles) # Dummy
|
|
|
|
|
|
+ add_custom_target(png_genfiles)
|
|
else()
|
|
else()
|
|
# Copy the awk scripts, converting their line endings to Unix (LF)
|
|
# Copy the awk scripts, converting their line endings to Unix (LF)
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/checksym.awk
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/checksym.awk
|
|
@@ -319,7 +334,6 @@ else()
|
|
|
|
|
|
# Generate .chk from .out with awk:
|
|
# Generate .chk from .out with awk:
|
|
# generate_chk(INPUT inputfile OUTPUT outputfile [DEPENDS dep1 [dep2...]])
|
|
# generate_chk(INPUT inputfile OUTPUT outputfile [DEPENDS dep1 [dep2...]])
|
|
- include(CMakeParseArguments)
|
|
|
|
function(generate_chk)
|
|
function(generate_chk)
|
|
set(options)
|
|
set(options)
|
|
set(oneValueArgs INPUT OUTPUT)
|
|
set(oneValueArgs INPUT OUTPUT)
|
|
@@ -390,6 +404,13 @@ else()
|
|
set(oneValueArgs INPUT OUTPUT)
|
|
set(oneValueArgs INPUT OUTPUT)
|
|
set(multiValueArgs DEPENDS)
|
|
set(multiValueArgs DEPENDS)
|
|
cmake_parse_arguments(_GCO "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
|
cmake_parse_arguments(_GCO "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
|
|
|
+ if(NOT _GCO_INPUT)
|
|
|
|
+ message(FATAL_ERROR "generate_copy: Missing INPUT argument")
|
|
|
|
+ endif()
|
|
|
|
+ if(NOT _GCO_OUTPUT)
|
|
|
|
+ message(FATAL_ERROR "generate_copy: Missing OUTPUT argument")
|
|
|
|
+ endif()
|
|
|
|
+
|
|
add_custom_command(OUTPUT "${_GCO_OUTPUT}"
|
|
add_custom_command(OUTPUT "${_GCO_OUTPUT}"
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
-E remove "${_GCO_OUTPUT}"
|
|
-E remove "${_GCO_OUTPUT}"
|
|
@@ -403,14 +424,16 @@ else()
|
|
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/scripts/pnglibconf.dfa"
|
|
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/scripts/pnglibconf.dfa"
|
|
"${CMAKE_CURRENT_BINARY_DIR}/scripts/options.awk"
|
|
"${CMAKE_CURRENT_BINARY_DIR}/scripts/options.awk"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/pngconf.h")
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/pngconf.h")
|
|
- add_custom_target(scripts_pnglibconf_c DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/scripts/pnglibconf.c")
|
|
|
|
|
|
+ add_custom_target(png_scripts_pnglibconf_c
|
|
|
|
+ DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/scripts/pnglibconf.c")
|
|
|
|
|
|
# Generate pnglibconf.c
|
|
# Generate pnglibconf.c
|
|
generate_source(OUTPUT "pnglibconf.c"
|
|
generate_source(OUTPUT "pnglibconf.c"
|
|
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/scripts/pnglibconf.dfa"
|
|
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/scripts/pnglibconf.dfa"
|
|
"${CMAKE_CURRENT_BINARY_DIR}/scripts/options.awk"
|
|
"${CMAKE_CURRENT_BINARY_DIR}/scripts/options.awk"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/pngconf.h")
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/pngconf.h")
|
|
- add_custom_target(pnglibconf_c DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.c")
|
|
|
|
|
|
+ add_custom_target(pnglibconf_c
|
|
|
|
+ DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.c")
|
|
|
|
|
|
if(PNG_PREFIX)
|
|
if(PNG_PREFIX)
|
|
set(PNGLIBCONF_H_EXTRA_DEPENDS
|
|
set(PNGLIBCONF_H_EXTRA_DEPENDS
|
|
@@ -423,92 +446,100 @@ else()
|
|
generate_out(INPUT "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.c"
|
|
generate_out(INPUT "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.c"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.out"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.out"
|
|
DEPENDS pnglibconf_c)
|
|
DEPENDS pnglibconf_c)
|
|
- add_custom_target(pnglibconf_out DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.out")
|
|
|
|
|
|
+ add_custom_target(pnglibconf_out
|
|
|
|
+ DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.out")
|
|
|
|
|
|
# Generate pnglibconf.h
|
|
# Generate pnglibconf.h
|
|
generate_source(OUTPUT "pnglibconf.h"
|
|
generate_source(OUTPUT "pnglibconf.h"
|
|
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.out" pnglibconf_out
|
|
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.out" pnglibconf_out
|
|
${PNGLIBCONF_H_EXTRA_DEPENDS})
|
|
${PNGLIBCONF_H_EXTRA_DEPENDS})
|
|
- add_custom_target(pnglibconf_h DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h")
|
|
|
|
|
|
+ add_custom_target(pnglibconf_h
|
|
|
|
+ DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h")
|
|
|
|
|
|
generate_out(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/scripts/intprefix.c"
|
|
generate_out(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/scripts/intprefix.c"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/intprefix.out"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/intprefix.out"
|
|
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h" pnglibconf_h)
|
|
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h" pnglibconf_h)
|
|
- add_custom_target(scripts_intprefix_out DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/scripts/intprefix.out")
|
|
|
|
|
|
+ add_custom_target(png_scripts_intprefix_out
|
|
|
|
+ DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/scripts/intprefix.out")
|
|
|
|
|
|
generate_out(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/scripts/prefix.c"
|
|
generate_out(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/scripts/prefix.c"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/prefix.out"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/prefix.out"
|
|
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/png.h"
|
|
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/png.h"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/pngconf.h"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/pngconf.h"
|
|
"${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.out" pnglibconf_out)
|
|
"${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.out" pnglibconf_out)
|
|
- add_custom_target(scripts_prefix_out DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/scripts/prefix.out")
|
|
|
|
|
|
+ add_custom_target(png_scripts_prefix_out
|
|
|
|
+ DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/scripts/prefix.out")
|
|
|
|
|
|
# Generate pngprefix.h
|
|
# Generate pngprefix.h
|
|
generate_source(OUTPUT "pngprefix.h"
|
|
generate_source(OUTPUT "pngprefix.h"
|
|
DEPENDS ${PNGPREFIX_H_EXTRA_DEPENDS})
|
|
DEPENDS ${PNGPREFIX_H_EXTRA_DEPENDS})
|
|
- add_custom_target(pngprefix_h DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pngprefix.h")
|
|
|
|
|
|
+ add_custom_target(pngprefix_h
|
|
|
|
+ DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pngprefix.h")
|
|
|
|
|
|
generate_out(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/scripts/sym.c"
|
|
generate_out(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/scripts/sym.c"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/sym.out"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/sym.out"
|
|
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h" pnglibconf_h)
|
|
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h" pnglibconf_h)
|
|
- add_custom_target(scripts_sym_out DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/scripts/sym.out")
|
|
|
|
|
|
+ add_custom_target(png_scripts_sym_out
|
|
|
|
+ DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/scripts/sym.out")
|
|
|
|
|
|
generate_out(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/scripts/symbols.c"
|
|
generate_out(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/scripts/symbols.c"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.out"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.out"
|
|
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/png.h"
|
|
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/png.h"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/pngconf.h"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/pngconf.h"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/scripts/pnglibconf.h.prebuilt")
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/scripts/pnglibconf.h.prebuilt")
|
|
- add_custom_target(scripts_symbols_out DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.out")
|
|
|
|
|
|
+ add_custom_target(png_scripts_symbols_out
|
|
|
|
+ DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.out")
|
|
|
|
|
|
generate_out(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/scripts/vers.c"
|
|
generate_out(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/scripts/vers.c"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/vers.out"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/vers.out"
|
|
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/png.h"
|
|
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/png.h"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/pngconf.h"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/pngconf.h"
|
|
"${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h" pnglibconf_h)
|
|
"${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h" pnglibconf_h)
|
|
- add_custom_target(scripts_vers_out DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/scripts/vers.out")
|
|
|
|
|
|
+ add_custom_target(png_scripts_vers_out
|
|
|
|
+ DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/scripts/vers.out")
|
|
|
|
|
|
generate_chk(INPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.out"
|
|
generate_chk(INPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.out"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.chk"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.chk"
|
|
- DEPENDS scripts_symbols_out
|
|
|
|
|
|
+ DEPENDS png_scripts_symbols_out
|
|
"${CMAKE_CURRENT_BINARY_DIR}/scripts/checksym.awk"
|
|
"${CMAKE_CURRENT_BINARY_DIR}/scripts/checksym.awk"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/scripts/symbols.def")
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/scripts/symbols.def")
|
|
|
|
|
|
- add_custom_target(scripts_symbols_chk
|
|
|
|
|
|
+ add_custom_target(png_scripts_symbols_chk
|
|
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.chk")
|
|
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.chk")
|
|
|
|
|
|
generate_copy(INPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/sym.out"
|
|
generate_copy(INPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/sym.out"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/libpng.sym"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/libpng.sym"
|
|
- DEPENDS scripts_sym_out)
|
|
|
|
|
|
+ DEPENDS png_scripts_sym_out)
|
|
generate_copy(INPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/vers.out"
|
|
generate_copy(INPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/vers.out"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/libpng.vers"
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/libpng.vers"
|
|
- DEPENDS scripts_vers_out)
|
|
|
|
|
|
+ DEPENDS png_scripts_vers_out)
|
|
|
|
|
|
- add_custom_target(genvers
|
|
|
|
|
|
+ add_custom_target(png_genvers
|
|
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/libpng.vers")
|
|
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/libpng.vers")
|
|
- add_custom_target(gensym
|
|
|
|
|
|
+ add_custom_target(png_gensym
|
|
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/libpng.sym")
|
|
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/libpng.sym")
|
|
|
|
|
|
- add_custom_target("genprebuilt"
|
|
|
|
|
|
+ add_custom_target(png_genprebuilt
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
"-DOUTPUT=scripts/pnglibconf.h.prebuilt"
|
|
"-DOUTPUT=scripts/pnglibconf.h.prebuilt"
|
|
-P "${CMAKE_CURRENT_BINARY_DIR}/scripts/gensrc.cmake"
|
|
-P "${CMAKE_CURRENT_BINARY_DIR}/scripts/gensrc.cmake"
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
|
|
|
|
|
|
# A single target handles generation of all generated files.
|
|
# A single target handles generation of all generated files.
|
|
- add_custom_target(genfiles
|
|
|
|
- DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/libpng.sym" gensym
|
|
|
|
- "${CMAKE_CURRENT_BINARY_DIR}/libpng.vers" genvers
|
|
|
|
|
|
+ add_custom_target(png_genfiles
|
|
|
|
+ DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/libpng.sym" png_gensym
|
|
|
|
+ "${CMAKE_CURRENT_BINARY_DIR}/libpng.vers" png_genvers
|
|
"${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.c" pnglibconf_c
|
|
"${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.c" pnglibconf_c
|
|
"${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h" pnglibconf_h
|
|
"${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h" pnglibconf_h
|
|
"${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.out" pnglibconf_out
|
|
"${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.out" pnglibconf_out
|
|
"${CMAKE_CURRENT_BINARY_DIR}/pngprefix.h" pngprefix_h
|
|
"${CMAKE_CURRENT_BINARY_DIR}/pngprefix.h" pngprefix_h
|
|
- "${CMAKE_CURRENT_BINARY_DIR}/scripts/intprefix.out" scripts_intprefix_out
|
|
|
|
- "${CMAKE_CURRENT_BINARY_DIR}/scripts/pnglibconf.c" scripts_pnglibconf_c
|
|
|
|
- "${CMAKE_CURRENT_BINARY_DIR}/scripts/prefix.out" scripts_prefix_out
|
|
|
|
- "${CMAKE_CURRENT_BINARY_DIR}/scripts/sym.out" scripts_sym_out
|
|
|
|
- "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.chk" scripts_symbols_chk
|
|
|
|
- "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.out" scripts_symbols_out
|
|
|
|
- "${CMAKE_CURRENT_BINARY_DIR}/scripts/vers.out" scripts_vers_out)
|
|
|
|
|
|
+ "${CMAKE_CURRENT_BINARY_DIR}/scripts/intprefix.out" png_scripts_intprefix_out
|
|
|
|
+ "${CMAKE_CURRENT_BINARY_DIR}/scripts/pnglibconf.c" png_scripts_pnglibconf_c
|
|
|
|
+ "${CMAKE_CURRENT_BINARY_DIR}/scripts/prefix.out" png_scripts_prefix_out
|
|
|
|
+ "${CMAKE_CURRENT_BINARY_DIR}/scripts/sym.out" png_scripts_sym_out
|
|
|
|
+ "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.chk" png_scripts_symbols_chk
|
|
|
|
+ "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.out" png_scripts_symbols_out
|
|
|
|
+ "${CMAKE_CURRENT_BINARY_DIR}/scripts/vers.out" png_scripts_vers_out)
|
|
endif(NOT AWK OR ANDROID OR IOS)
|
|
endif(NOT AWK OR ANDROID OR IOS)
|
|
|
|
|
|
# List the source code files.
|
|
# List the source code files.
|
|
@@ -571,7 +602,8 @@ set(png_fix_itxt_sources
|
|
contrib/tools/png-fix-itxt.c
|
|
contrib/tools/png-fix-itxt.c
|
|
)
|
|
)
|
|
|
|
|
|
-if(MSVC)
|
|
|
|
|
|
+if(MSVC OR (WIN32 AND (CMAKE_C_COMPILER_ID MATCHES ".*Clang")))
|
|
|
|
+ add_definitions(-D_CRT_NONSTDC_NO_DEPRECATE)
|
|
add_definitions(-D_CRT_SECURE_NO_DEPRECATE)
|
|
add_definitions(-D_CRT_SECURE_NO_DEPRECATE)
|
|
endif()
|
|
endif()
|
|
|
|
|
|
@@ -579,85 +611,84 @@ if(PNG_DEBUG)
|
|
add_definitions(-DPNG_DEBUG)
|
|
add_definitions(-DPNG_DEBUG)
|
|
endif()
|
|
endif()
|
|
|
|
|
|
-# Now build our target.
|
|
|
|
|
|
+# Now build our targets.
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${ZLIB_INCLUDE_DIRS})
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${ZLIB_INCLUDE_DIRS})
|
|
|
|
|
|
-unset(PNG_LIB_TARGETS)
|
|
|
|
|
|
+# Initialize the list of libpng library targets.
|
|
|
|
+set(PNG_LIBRARY_TARGETS "")
|
|
|
|
+
|
|
|
|
+# Initialize the libpng library file names.
|
|
|
|
+if(UNIX
|
|
|
|
+ OR (WIN32 AND NOT "${CMAKE_SHARED_LIBRARY_PREFIX}" STREQUAL "")
|
|
|
|
+ OR (WIN32 AND NOT "${CMAKE_STATIC_LIBRARY_PREFIX}" STREQUAL ""))
|
|
|
|
+ # We are on a Unix or Unix-like toolchain like the GNU toolchain on Windows.
|
|
|
|
+ # Library file names are expected to have an implicit prefix such as "lib".
|
|
|
|
+ # Let CMake prepend and append its usual prefixes and suffixes by default.
|
|
|
|
+ set(PNG_SHARED_OUTPUT_NAME "png${PNGLIB_ABI_VERSION}")
|
|
|
|
+ set(PNG_STATIC_OUTPUT_NAME "png${PNGLIB_ABI_VERSION}")
|
|
|
|
+else()
|
|
|
|
+ # We are, most likely, on a Windows toolchain like MSVC, Clang on Windows,
|
|
|
|
+ # Borland/Embarcadero, etc. We need to specify the "libpng" name explicitly.
|
|
|
|
+ # We also need to use a custom suffix, in order to distinguish between the
|
|
|
|
+ # shared import library name and the static library name.
|
|
|
|
+ set(PNG_SHARED_OUTPUT_NAME "libpng${PNGLIB_ABI_VERSION}")
|
|
|
|
+ set(PNG_STATIC_OUTPUT_NAME "libpng${PNGLIB_ABI_VERSION}_static")
|
|
|
|
+endif()
|
|
|
|
|
|
if(PNG_SHARED)
|
|
if(PNG_SHARED)
|
|
- add_library(png SHARED ${libpng_sources})
|
|
|
|
- set(PNG_LIB_TARGETS png)
|
|
|
|
- set_target_properties(png PROPERTIES OUTPUT_NAME ${PNG_LIB_NAME})
|
|
|
|
- add_dependencies(png genfiles)
|
|
|
|
- if(MSVC)
|
|
|
|
- # MVC does not append 'lib'. Do it here, to have consistent name.
|
|
|
|
- set_target_properties(png PROPERTIES PREFIX "lib")
|
|
|
|
- set_target_properties(png PROPERTIES IMPORT_PREFIX "lib")
|
|
|
|
- endif()
|
|
|
|
- target_link_libraries(png ${ZLIB_LIBRARIES} ${M_LIBRARY})
|
|
|
|
-
|
|
|
|
|
|
+ add_library(png_shared SHARED ${libpng_sources})
|
|
|
|
+ add_dependencies(png_shared png_genfiles)
|
|
|
|
+ list(APPEND PNG_LIBRARY_TARGETS png_shared)
|
|
|
|
+ set_target_properties(png_shared PROPERTIES
|
|
|
|
+ OUTPUT_NAME "${PNG_SHARED_OUTPUT_NAME}"
|
|
|
|
+ DEBUG_POSTFIX "${PNG_DEBUG_POSTFIX}"
|
|
|
|
+ VERSION "${PNGLIB_SHARED_VERSION}"
|
|
|
|
+ SOVERSION "${PNGLIB_ABI_VERSION}")
|
|
if(UNIX AND AWK)
|
|
if(UNIX AND AWK)
|
|
if(HAVE_LD_VERSION_SCRIPT)
|
|
if(HAVE_LD_VERSION_SCRIPT)
|
|
- set_target_properties(png PROPERTIES
|
|
|
|
|
|
+ set_target_properties(png_shared PROPERTIES
|
|
LINK_FLAGS "-Wl,--version-script='${CMAKE_CURRENT_BINARY_DIR}/libpng.vers'")
|
|
LINK_FLAGS "-Wl,--version-script='${CMAKE_CURRENT_BINARY_DIR}/libpng.vers'")
|
|
elseif(HAVE_SOLARIS_LD_VERSION_SCRIPT)
|
|
elseif(HAVE_SOLARIS_LD_VERSION_SCRIPT)
|
|
- set_target_properties(png PROPERTIES
|
|
|
|
|
|
+ set_target_properties(png_shared PROPERTIES
|
|
LINK_FLAGS "-Wl,-M -Wl,'${CMAKE_CURRENT_BINARY_DIR}/libpng.vers'")
|
|
LINK_FLAGS "-Wl,-M -Wl,'${CMAKE_CURRENT_BINARY_DIR}/libpng.vers'")
|
|
endif()
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
+ if(WIN32)
|
|
|
|
+ set_target_properties(png_shared PROPERTIES DEFINE_SYMBOL PNG_BUILD_DLL)
|
|
|
|
+ endif()
|
|
|
|
+ target_link_libraries(png_shared ${ZLIB_LIBRARIES} ${M_LIBRARY})
|
|
endif()
|
|
endif()
|
|
|
|
|
|
if(PNG_STATIC)
|
|
if(PNG_STATIC)
|
|
- # does not work without changing name
|
|
|
|
- set(PNG_LIB_NAME_STATIC png_static)
|
|
|
|
add_library(png_static STATIC ${libpng_sources})
|
|
add_library(png_static STATIC ${libpng_sources})
|
|
- add_dependencies(png_static genfiles)
|
|
|
|
- # MSVC doesn't use a different file extension for shared vs. static
|
|
|
|
- # libs. We are able to change OUTPUT_NAME to remove the _static
|
|
|
|
- # for all other platforms.
|
|
|
|
- if(NOT MSVC)
|
|
|
|
- set_target_properties(png_static PROPERTIES
|
|
|
|
- OUTPUT_NAME "${PNG_LIB_NAME}"
|
|
|
|
- CLEAN_DIRECT_OUTPUT 1)
|
|
|
|
- else()
|
|
|
|
- set_target_properties(png_static PROPERTIES
|
|
|
|
- OUTPUT_NAME "${PNG_LIB_NAME}_static"
|
|
|
|
- CLEAN_DIRECT_OUTPUT 1)
|
|
|
|
- endif()
|
|
|
|
- list(APPEND PNG_LIB_TARGETS png_static)
|
|
|
|
- if(MSVC)
|
|
|
|
- # MSVC does not append 'lib'. Do it here, to have consistent name.
|
|
|
|
- set_target_properties(png_static PROPERTIES PREFIX "lib")
|
|
|
|
- endif()
|
|
|
|
|
|
+ add_dependencies(png_static png_genfiles)
|
|
|
|
+ list(APPEND PNG_LIBRARY_TARGETS png_static)
|
|
|
|
+ set_target_properties(png_static PROPERTIES
|
|
|
|
+ OUTPUT_NAME "${PNG_STATIC_OUTPUT_NAME}"
|
|
|
|
+ DEBUG_POSTFIX "${PNG_DEBUG_POSTFIX}")
|
|
target_link_libraries(png_static ${ZLIB_LIBRARIES} ${M_LIBRARY})
|
|
target_link_libraries(png_static ${ZLIB_LIBRARIES} ${M_LIBRARY})
|
|
endif()
|
|
endif()
|
|
|
|
|
|
if(PNG_FRAMEWORK)
|
|
if(PNG_FRAMEWORK)
|
|
- set(PNG_LIB_NAME_FRAMEWORK png_framework)
|
|
|
|
add_library(png_framework SHARED ${libpng_sources})
|
|
add_library(png_framework SHARED ${libpng_sources})
|
|
- add_dependencies(png_framework genfiles)
|
|
|
|
- list(APPEND PNG_LIB_TARGETS png_framework)
|
|
|
|
|
|
+ add_dependencies(png_framework png_genfiles)
|
|
|
|
+ list(APPEND PNG_LIBRARY_TARGETS png_framework)
|
|
set_target_properties(png_framework PROPERTIES
|
|
set_target_properties(png_framework PROPERTIES
|
|
FRAMEWORK TRUE
|
|
FRAMEWORK TRUE
|
|
- FRAMEWORK_VERSION ${PNGLIB_VERSION}
|
|
|
|
- MACOSX_FRAMEWORK_SHORT_VERSION_STRING ${PNGLIB_MAJOR}.${PNGLIB_MINOR}
|
|
|
|
- MACOSX_FRAMEWORK_BUNDLE_VERSION ${PNGLIB_VERSION}
|
|
|
|
- MACOSX_FRAMEWORK_IDENTIFIER org.libpng.libpng
|
|
|
|
|
|
+ FRAMEWORK_VERSION "${PNGLIB_VERSION}"
|
|
|
|
+ MACOSX_FRAMEWORK_SHORT_VERSION_STRING "${PNGLIB_MAJOR}.${PNGLIB_MINOR}"
|
|
|
|
+ MACOSX_FRAMEWORK_BUNDLE_VERSION "${PNGLIB_VERSION}"
|
|
|
|
+ MACOSX_FRAMEWORK_IDENTIFIER "org.libpng.libpng"
|
|
XCODE_ATTRIBUTE_INSTALL_PATH "@rpath"
|
|
XCODE_ATTRIBUTE_INSTALL_PATH "@rpath"
|
|
PUBLIC_HEADER "${libpng_public_hdrs}"
|
|
PUBLIC_HEADER "${libpng_public_hdrs}"
|
|
- OUTPUT_NAME png)
|
|
|
|
|
|
+ OUTPUT_NAME "png")
|
|
target_link_libraries(png_framework ${ZLIB_LIBRARIES} ${M_LIBRARY})
|
|
target_link_libraries(png_framework ${ZLIB_LIBRARIES} ${M_LIBRARY})
|
|
endif()
|
|
endif()
|
|
|
|
|
|
-if(NOT PNG_LIB_TARGETS)
|
|
|
|
|
|
+if(NOT PNG_LIBRARY_TARGETS)
|
|
message(SEND_ERROR "No library variant selected to build. "
|
|
message(SEND_ERROR "No library variant selected to build. "
|
|
"Please enable at least one of the following options: "
|
|
"Please enable at least one of the following options: "
|
|
- "PNG_STATIC, PNG_SHARED, PNG_FRAMEWORK")
|
|
|
|
-endif()
|
|
|
|
-
|
|
|
|
-if(PNG_SHARED AND WIN32)
|
|
|
|
- set_target_properties(png PROPERTIES
|
|
|
|
- DEFINE_SYMBOL PNG_BUILD_DLL)
|
|
|
|
|
|
+ "PNG_SHARED, PNG_STATIC, PNG_FRAMEWORK")
|
|
endif()
|
|
endif()
|
|
|
|
|
|
function(png_add_test)
|
|
function(png_add_test)
|
|
@@ -665,7 +696,6 @@ function(png_add_test)
|
|
set(oneValueArgs NAME COMMAND)
|
|
set(oneValueArgs NAME COMMAND)
|
|
set(multiValueArgs OPTIONS FILES)
|
|
set(multiValueArgs OPTIONS FILES)
|
|
cmake_parse_arguments(_PAT "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
|
cmake_parse_arguments(_PAT "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
|
-
|
|
|
|
if(NOT _PAT_NAME)
|
|
if(NOT _PAT_NAME)
|
|
message(FATAL_ERROR "png_add_test: Missing NAME argument")
|
|
message(FATAL_ERROR "png_add_test: Missing NAME argument")
|
|
endif()
|
|
endif()
|
|
@@ -681,7 +711,7 @@ function(png_add_test)
|
|
@ONLY)
|
|
@ONLY)
|
|
add_test(NAME "${_PAT_NAME}"
|
|
add_test(NAME "${_PAT_NAME}"
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
- "-DLIBPNG=$<TARGET_FILE:png>"
|
|
|
|
|
|
+ "-DLIBPNG=$<TARGET_FILE:png_shared>"
|
|
"-DTEST_COMMAND=$<TARGET_FILE:${_PAT_COMMAND}>"
|
|
"-DTEST_COMMAND=$<TARGET_FILE:${_PAT_COMMAND}>"
|
|
-P "${CMAKE_CURRENT_BINARY_DIR}/tests/${_PAT_NAME}.cmake")
|
|
-P "${CMAKE_CURRENT_BINARY_DIR}/tests/${_PAT_NAME}.cmake")
|
|
endfunction()
|
|
endfunction()
|
|
@@ -697,14 +727,14 @@ if(PNG_TESTS AND PNG_SHARED)
|
|
set(PNGTEST_PNG "${CMAKE_CURRENT_SOURCE_DIR}/pngtest.png")
|
|
set(PNGTEST_PNG "${CMAKE_CURRENT_SOURCE_DIR}/pngtest.png")
|
|
|
|
|
|
add_executable(pngtest ${pngtest_sources})
|
|
add_executable(pngtest ${pngtest_sources})
|
|
- target_link_libraries(pngtest png)
|
|
|
|
|
|
+ target_link_libraries(pngtest png_shared)
|
|
|
|
|
|
png_add_test(NAME pngtest
|
|
png_add_test(NAME pngtest
|
|
COMMAND pngtest
|
|
COMMAND pngtest
|
|
FILES "${PNGTEST_PNG}")
|
|
FILES "${PNGTEST_PNG}")
|
|
|
|
|
|
add_executable(pngvalid ${pngvalid_sources})
|
|
add_executable(pngvalid ${pngvalid_sources})
|
|
- target_link_libraries(pngvalid png)
|
|
|
|
|
|
+ target_link_libraries(pngvalid png_shared)
|
|
|
|
|
|
png_add_test(NAME pngvalid-gamma-16-to-8
|
|
png_add_test(NAME pngvalid-gamma-16-to-8
|
|
COMMAND pngvalid
|
|
COMMAND pngvalid
|
|
@@ -750,7 +780,7 @@ if(PNG_TESTS AND PNG_SHARED)
|
|
OPTIONS --transform)
|
|
OPTIONS --transform)
|
|
|
|
|
|
add_executable(pngstest ${pngstest_sources})
|
|
add_executable(pngstest ${pngstest_sources})
|
|
- target_link_libraries(pngstest png)
|
|
|
|
|
|
+ target_link_libraries(pngstest png_shared)
|
|
|
|
|
|
foreach(gamma_type 1.8 linear none sRGB)
|
|
foreach(gamma_type 1.8 linear none sRGB)
|
|
foreach(alpha_type none alpha)
|
|
foreach(alpha_type none alpha)
|
|
@@ -805,7 +835,7 @@ if(PNG_TESTS AND PNG_SHARED)
|
|
endforeach()
|
|
endforeach()
|
|
|
|
|
|
add_executable(pngunknown ${pngunknown_sources})
|
|
add_executable(pngunknown ${pngunknown_sources})
|
|
- target_link_libraries(pngunknown png)
|
|
|
|
|
|
+ target_link_libraries(pngunknown png_shared)
|
|
|
|
|
|
png_add_test(NAME pngunknown-discard
|
|
png_add_test(NAME pngunknown-discard
|
|
COMMAND pngunknown
|
|
COMMAND pngunknown
|
|
@@ -837,7 +867,7 @@ if(PNG_TESTS AND PNG_SHARED)
|
|
FILES "${PNGTEST_PNG}")
|
|
FILES "${PNGTEST_PNG}")
|
|
|
|
|
|
add_executable(pngimage ${pngimage_sources})
|
|
add_executable(pngimage ${pngimage_sources})
|
|
- target_link_libraries(pngimage png)
|
|
|
|
|
|
+ target_link_libraries(pngimage png_shared)
|
|
|
|
|
|
png_add_test(NAME pngimage-quick
|
|
png_add_test(NAME pngimage-quick
|
|
COMMAND pngimage
|
|
COMMAND pngimage
|
|
@@ -851,7 +881,7 @@ endif()
|
|
|
|
|
|
if(PNG_SHARED AND PNG_EXECUTABLES)
|
|
if(PNG_SHARED AND PNG_EXECUTABLES)
|
|
add_executable(pngfix ${pngfix_sources})
|
|
add_executable(pngfix ${pngfix_sources})
|
|
- target_link_libraries(pngfix png)
|
|
|
|
|
|
+ target_link_libraries(pngfix png_shared)
|
|
set(PNG_BIN_TARGETS pngfix)
|
|
set(PNG_BIN_TARGETS pngfix)
|
|
|
|
|
|
add_executable(png-fix-itxt ${png_fix_itxt_sources})
|
|
add_executable(png-fix-itxt ${png_fix_itxt_sources})
|
|
@@ -859,56 +889,53 @@ if(PNG_SHARED AND PNG_EXECUTABLES)
|
|
list(APPEND PNG_BIN_TARGETS png-fix-itxt)
|
|
list(APPEND PNG_BIN_TARGETS png-fix-itxt)
|
|
endif()
|
|
endif()
|
|
|
|
|
|
-# Creates a symlink from src to dest (if possible), or, alternatively,
|
|
|
|
-# copies src to dest if different.
|
|
|
|
-include(CMakeParseArguments)
|
|
|
|
|
|
+# Create a symlink from src to dest (if possible), or, alternatively,
|
|
|
|
+# copy src to dest if different.
|
|
function(create_symlink DEST_FILE)
|
|
function(create_symlink DEST_FILE)
|
|
- cmake_parse_arguments(S "" "FILE;TARGET" "" ${ARGN})
|
|
|
|
-
|
|
|
|
- if(NOT S_TARGET AND NOT S_FILE)
|
|
|
|
- message(FATAL_ERROR "create_symlink: Missing TARGET or FILE argument")
|
|
|
|
|
|
+ cmake_parse_arguments(_SYM "" "FILE;TARGET" "" ${ARGN})
|
|
|
|
+ if(NOT _SYM_FILE AND NOT _SYM_TARGET)
|
|
|
|
+ message(FATAL_ERROR "create_symlink: Missing FILE or TARGET argument")
|
|
endif()
|
|
endif()
|
|
-
|
|
|
|
- if(S_TARGET AND S_FILE)
|
|
|
|
|
|
+ if(_SYM_FILE AND _SYM_TARGET)
|
|
message(FATAL_ERROR "create_symlink: "
|
|
message(FATAL_ERROR "create_symlink: "
|
|
- "Both source file ${S_FILE} and build target ${S_TARGET} arguments are present; "
|
|
|
|
- "can only have one")
|
|
|
|
|
|
+ "The arguments FILE (${_SYM_FILE}) and TARGET (${_SYM_TARGET}) "
|
|
|
|
+ "are mutually-exclusive")
|
|
endif()
|
|
endif()
|
|
|
|
|
|
- if(S_FILE)
|
|
|
|
|
|
+ if(_SYM_FILE)
|
|
# If we don't need to symlink something that's coming from a build target,
|
|
# If we don't need to symlink something that's coming from a build target,
|
|
# we can go ahead and symlink/copy at configure time.
|
|
# we can go ahead and symlink/copy at configure time.
|
|
if(CMAKE_HOST_WIN32 AND NOT CYGWIN)
|
|
if(CMAKE_HOST_WIN32 AND NOT CYGWIN)
|
|
execute_process(COMMAND "${CMAKE_COMMAND}"
|
|
execute_process(COMMAND "${CMAKE_COMMAND}"
|
|
-E copy_if_different
|
|
-E copy_if_different
|
|
- ${S_FILE} ${DEST_FILE}
|
|
|
|
|
|
+ ${_SYM_FILE} ${DEST_FILE}
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
|
|
else()
|
|
else()
|
|
execute_process(COMMAND "${CMAKE_COMMAND}"
|
|
execute_process(COMMAND "${CMAKE_COMMAND}"
|
|
-E create_symlink
|
|
-E create_symlink
|
|
- ${S_FILE} ${DEST_FILE}
|
|
|
|
|
|
+ ${_SYM_FILE} ${DEST_FILE}
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
|
|
endif()
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
|
|
- if(S_TARGET)
|
|
|
|
|
|
+ if(_SYM_TARGET)
|
|
# We need to use generator expressions, which can be a bit tricky.
|
|
# We need to use generator expressions, which can be a bit tricky.
|
|
# For simplicity, make the symlink a POST_BUILD step, and use the TARGET
|
|
# For simplicity, make the symlink a POST_BUILD step, and use the TARGET
|
|
# signature of add_custom_command.
|
|
# signature of add_custom_command.
|
|
if(CMAKE_HOST_WIN32 AND NOT CYGWIN)
|
|
if(CMAKE_HOST_WIN32 AND NOT CYGWIN)
|
|
- add_custom_command(TARGET ${S_TARGET}
|
|
|
|
|
|
+ add_custom_command(TARGET ${_SYM_TARGET}
|
|
POST_BUILD
|
|
POST_BUILD
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
-E copy_if_different
|
|
-E copy_if_different
|
|
- $<TARGET_LINKER_FILE_NAME:${S_TARGET}>
|
|
|
|
- $<TARGET_LINKER_FILE_DIR:${S_TARGET}>/${DEST_FILE})
|
|
|
|
|
|
+ $<TARGET_LINKER_FILE_NAME:${_SYM_TARGET}>
|
|
|
|
+ $<TARGET_LINKER_FILE_DIR:${_SYM_TARGET}>/${DEST_FILE})
|
|
else()
|
|
else()
|
|
- add_custom_command(TARGET ${S_TARGET}
|
|
|
|
|
|
+ add_custom_command(TARGET ${_SYM_TARGET}
|
|
POST_BUILD
|
|
POST_BUILD
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
-E create_symlink
|
|
-E create_symlink
|
|
- $<TARGET_LINKER_FILE_NAME:${S_TARGET}>
|
|
|
|
- $<TARGET_LINKER_FILE_DIR:${S_TARGET}>/${DEST_FILE})
|
|
|
|
|
|
+ $<TARGET_LINKER_FILE_NAME:${_SYM_TARGET}>
|
|
|
|
+ $<TARGET_LINKER_FILE_DIR:${_SYM_TARGET}>/${DEST_FILE})
|
|
endif()
|
|
endif()
|
|
endif()
|
|
endif()
|
|
endfunction()
|
|
endfunction()
|
|
@@ -940,26 +967,18 @@ if(NOT WIN32 OR CYGWIN OR MINGW)
|
|
set(includedir ${CMAKE_INSTALL_FULL_INCLUDEDIR})
|
|
set(includedir ${CMAKE_INSTALL_FULL_INCLUDEDIR})
|
|
set(LIBS "-lz -lm")
|
|
set(LIBS "-lz -lm")
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libpng.pc.in
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libpng.pc.in
|
|
- ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}.pc
|
|
|
|
|
|
+ ${CMAKE_CURRENT_BINARY_DIR}/libpng${PNGLIB_ABI_VERSION}.pc
|
|
@ONLY)
|
|
@ONLY)
|
|
- create_symlink(libpng.pc FILE ${PNGLIB_NAME}.pc)
|
|
|
|
|
|
+ create_symlink(libpng.pc FILE libpng${PNGLIB_ABI_VERSION}.pc)
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libpng-config.in
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libpng-config.in
|
|
- ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}-config
|
|
|
|
|
|
+ ${CMAKE_CURRENT_BINARY_DIR}/libpng${PNGLIB_ABI_VERSION}-config
|
|
@ONLY)
|
|
@ONLY)
|
|
- create_symlink(libpng-config FILE ${PNGLIB_NAME}-config)
|
|
|
|
-endif()
|
|
|
|
-
|
|
|
|
-# Set up links.
|
|
|
|
-if(PNG_SHARED)
|
|
|
|
- set_target_properties(png PROPERTIES
|
|
|
|
- VERSION ${PNGLIB_SHARED_VERSION}
|
|
|
|
- SOVERSION ${PNGLIB_SHARED_SOVERSION}
|
|
|
|
- CLEAN_DIRECT_OUTPUT 1)
|
|
|
|
|
|
+ create_symlink(libpng-config FILE libpng${PNGLIB_ABI_VERSION}-config)
|
|
endif()
|
|
endif()
|
|
|
|
|
|
# Install.
|
|
# Install.
|
|
if(NOT SKIP_INSTALL_LIBRARIES AND NOT SKIP_INSTALL_ALL)
|
|
if(NOT SKIP_INSTALL_LIBRARIES AND NOT SKIP_INSTALL_ALL)
|
|
- install(TARGETS ${PNG_LIB_TARGETS}
|
|
|
|
|
|
+ install(TARGETS ${PNG_LIBRARY_TARGETS}
|
|
EXPORT libpng
|
|
EXPORT libpng
|
|
RUNTIME DESTINATION bin
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
@@ -969,14 +988,14 @@ if(NOT SKIP_INSTALL_LIBRARIES AND NOT SKIP_INSTALL_ALL)
|
|
if(PNG_SHARED)
|
|
if(PNG_SHARED)
|
|
# Create a symlink for libpng.dll.a => libpng16.dll.a on Cygwin
|
|
# Create a symlink for libpng.dll.a => libpng16.dll.a on Cygwin
|
|
if(CYGWIN OR MINGW)
|
|
if(CYGWIN OR MINGW)
|
|
- create_symlink(libpng${CMAKE_IMPORT_LIBRARY_SUFFIX} TARGET png)
|
|
|
|
- install(FILES $<TARGET_LINKER_FILE_DIR:png>/libpng${CMAKE_IMPORT_LIBRARY_SUFFIX}
|
|
|
|
|
|
+ create_symlink(libpng${CMAKE_IMPORT_LIBRARY_SUFFIX} TARGET png_shared)
|
|
|
|
+ install(FILES $<TARGET_LINKER_FILE_DIR:png_shared>/libpng${CMAKE_IMPORT_LIBRARY_SUFFIX}
|
|
DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
|
DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
|
endif()
|
|
endif()
|
|
|
|
|
|
if(NOT WIN32)
|
|
if(NOT WIN32)
|
|
- create_symlink(libpng${CMAKE_SHARED_LIBRARY_SUFFIX} TARGET png)
|
|
|
|
- install(FILES $<TARGET_LINKER_FILE_DIR:png>/libpng${CMAKE_SHARED_LIBRARY_SUFFIX}
|
|
|
|
|
|
+ create_symlink(libpng${CMAKE_SHARED_LIBRARY_SUFFIX} TARGET png_shared)
|
|
|
|
+ install(FILES $<TARGET_LINKER_FILE_DIR:png_shared>/libpng${CMAKE_SHARED_LIBRARY_SUFFIX}
|
|
DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
|
DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
|
endif()
|
|
endif()
|
|
endif()
|
|
endif()
|
|
@@ -994,13 +1013,13 @@ if(NOT SKIP_INSTALL_HEADERS AND NOT SKIP_INSTALL_ALL)
|
|
install(FILES ${libpng_public_hdrs}
|
|
install(FILES ${libpng_public_hdrs}
|
|
DESTINATION include)
|
|
DESTINATION include)
|
|
install(FILES ${libpng_public_hdrs}
|
|
install(FILES ${libpng_public_hdrs}
|
|
- DESTINATION include/${PNGLIB_NAME})
|
|
|
|
|
|
+ DESTINATION include/libpng${PNGLIB_ABI_VERSION})
|
|
endif()
|
|
endif()
|
|
if(NOT SKIP_INSTALL_EXECUTABLES AND NOT SKIP_INSTALL_ALL)
|
|
if(NOT SKIP_INSTALL_EXECUTABLES AND NOT SKIP_INSTALL_ALL)
|
|
if(NOT WIN32 OR CYGWIN OR MINGW)
|
|
if(NOT WIN32 OR CYGWIN OR MINGW)
|
|
install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/libpng-config
|
|
install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/libpng-config
|
|
DESTINATION bin)
|
|
DESTINATION bin)
|
|
- install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}-config
|
|
|
|
|
|
+ install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/libpng${PNGLIB_ABI_VERSION}-config
|
|
DESTINATION bin)
|
|
DESTINATION bin)
|
|
endif()
|
|
endif()
|
|
endif()
|
|
endif()
|
|
@@ -1022,9 +1041,9 @@ if(NOT SKIP_INSTALL_FILES AND NOT SKIP_INSTALL_ALL)
|
|
DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
|
|
DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
|
|
install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/libpng-config
|
|
install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/libpng-config
|
|
DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}.pc
|
|
|
|
|
|
+ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libpng${PNGLIB_ABI_VERSION}.pc
|
|
DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
|
|
DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
|
|
- install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}-config
|
|
|
|
|
|
+ install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/libpng${PNGLIB_ABI_VERSION}-config
|
|
DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
endif()
|
|
endif()
|
|
endif()
|
|
endif()
|
|
@@ -1033,7 +1052,7 @@ endif()
|
|
if(NOT SKIP_INSTALL_EXPORT AND NOT SKIP_INSTALL_ALL)
|
|
if(NOT SKIP_INSTALL_EXPORT AND NOT SKIP_INSTALL_ALL)
|
|
install(EXPORT libpng
|
|
install(EXPORT libpng
|
|
DESTINATION lib/libpng
|
|
DESTINATION lib/libpng
|
|
- FILE lib${PNG_LIB_NAME}.cmake)
|
|
|
|
|
|
+ FILE libpng${PNGLIB_ABI_VERSION}.cmake)
|
|
endif()
|
|
endif()
|
|
|
|
|
|
# TODO: Create MSVC import lib for MinGW-compiled shared lib.
|
|
# TODO: Create MSVC import lib for MinGW-compiled shared lib.
|