mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
cmake: Clean up functions, string operations, regular expressions, etc.
Remove the inclusion of the external module `CMakeParseArguments`. Function argument parsing became a first-class feature in CMake 3.5. Delete the function `find_symbol_prefix`. It is no longer used. Use variables instead of strings in string operations where possible. Prevent CMake from getting confused by string values that might be accidentally identical to unrelated keywords. Clean up spurious `.*` sequences in regex matching operations. Rephrase a comment.
This commit is contained in:
parent
8fc13a8704
commit
acfd50ae0b
@ -48,7 +48,6 @@ project(libpng
|
|||||||
VERSION ${PNGLIB_VERSION}
|
VERSION ${PNGLIB_VERSION}
|
||||||
LANGUAGES C ASM)
|
LANGUAGES C ASM)
|
||||||
|
|
||||||
include(CMakeParseArguments)
|
|
||||||
include(CheckCSourceCompiles)
|
include(CheckCSourceCompiles)
|
||||||
include(GNUInstallDirs)
|
include(GNUInstallDirs)
|
||||||
|
|
||||||
@ -110,7 +109,7 @@ if(UNIX AND NOT APPLE AND NOT BEOS AND NOT HAIKU AND NOT EMSCRIPTEN)
|
|||||||
set(M_LIBRARY "")
|
set(M_LIBRARY "")
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
# libm is not needed and/or not available.
|
# libm is not available or not needed.
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# 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,
|
||||||
@ -142,7 +141,7 @@ if(TARGET_ARCH MATCHES "^(ARM|arm|aarch)")
|
|||||||
list(FIND PNG_ARM_NEON_POSSIBLE_VALUES ${PNG_ARM_NEON} index)
|
list(FIND PNG_ARM_NEON_POSSIBLE_VALUES ${PNG_ARM_NEON} index)
|
||||||
if(index EQUAL -1)
|
if(index EQUAL -1)
|
||||||
message(FATAL_ERROR "PNG_ARM_NEON must be one of [${PNG_ARM_NEON_POSSIBLE_VALUES}]")
|
message(FATAL_ERROR "PNG_ARM_NEON must be one of [${PNG_ARM_NEON_POSSIBLE_VALUES}]")
|
||||||
elseif(NOT ${PNG_ARM_NEON} STREQUAL "off")
|
elseif(NOT PNG_ARM_NEON STREQUAL "off")
|
||||||
set(libpng_arm_sources
|
set(libpng_arm_sources
|
||||||
arm/arm_init.c
|
arm/arm_init.c
|
||||||
arm/filter_neon_intrinsics.c
|
arm/filter_neon_intrinsics.c
|
||||||
@ -150,9 +149,9 @@ if(TARGET_ARCH MATCHES "^(ARM|arm|aarch)")
|
|||||||
if(NOT MSVC)
|
if(NOT MSVC)
|
||||||
list(APPEND libpng_arm_sources arm/filter_neon.S)
|
list(APPEND libpng_arm_sources arm/filter_neon.S)
|
||||||
endif()
|
endif()
|
||||||
if(${PNG_ARM_NEON} STREQUAL "on")
|
if(PNG_ARM_NEON STREQUAL "on")
|
||||||
add_definitions(-DPNG_ARM_NEON_OPT=2)
|
add_definitions(-DPNG_ARM_NEON_OPT=2)
|
||||||
elseif(${PNG_ARM_NEON} STREQUAL "check")
|
elseif(PNG_ARM_NEON STREQUAL "check")
|
||||||
add_definitions(-DPNG_ARM_NEON_CHECK_SUPPORTED)
|
add_definitions(-DPNG_ARM_NEON_CHECK_SUPPORTED)
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
@ -170,11 +169,11 @@ if(TARGET_ARCH MATCHES "^(powerpc|ppc64)")
|
|||||||
list(FIND PNG_POWERPC_VSX_POSSIBLE_VALUES ${PNG_POWERPC_VSX} index)
|
list(FIND PNG_POWERPC_VSX_POSSIBLE_VALUES ${PNG_POWERPC_VSX} index)
|
||||||
if(index EQUAL -1)
|
if(index EQUAL -1)
|
||||||
message(FATAL_ERROR "PNG_POWERPC_VSX must be one of [${PNG_POWERPC_VSX_POSSIBLE_VALUES}]")
|
message(FATAL_ERROR "PNG_POWERPC_VSX must be one of [${PNG_POWERPC_VSX_POSSIBLE_VALUES}]")
|
||||||
elseif(NOT ${PNG_POWERPC_VSX} STREQUAL "off")
|
elseif(NOT PNG_POWERPC_VSX STREQUAL "off")
|
||||||
set(libpng_powerpc_sources
|
set(libpng_powerpc_sources
|
||||||
powerpc/powerpc_init.c
|
powerpc/powerpc_init.c
|
||||||
powerpc/filter_vsx_intrinsics.c)
|
powerpc/filter_vsx_intrinsics.c)
|
||||||
if(${PNG_POWERPC_VSX} STREQUAL "on")
|
if(PNG_POWERPC_VSX STREQUAL "on")
|
||||||
add_definitions(-DPNG_POWERPC_VSX_OPT=2)
|
add_definitions(-DPNG_POWERPC_VSX_OPT=2)
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
@ -192,11 +191,11 @@ if(TARGET_ARCH MATCHES "^(i[3-6]86|x86|AMD64)")
|
|||||||
list(FIND PNG_INTEL_SSE_POSSIBLE_VALUES ${PNG_INTEL_SSE} index)
|
list(FIND PNG_INTEL_SSE_POSSIBLE_VALUES ${PNG_INTEL_SSE} index)
|
||||||
if(index EQUAL -1)
|
if(index EQUAL -1)
|
||||||
message(FATAL_ERROR "PNG_INTEL_SSE must be one of [${PNG_INTEL_SSE_POSSIBLE_VALUES}]")
|
message(FATAL_ERROR "PNG_INTEL_SSE must be one of [${PNG_INTEL_SSE_POSSIBLE_VALUES}]")
|
||||||
elseif(NOT ${PNG_INTEL_SSE} STREQUAL "off")
|
elseif(NOT PNG_INTEL_SSE STREQUAL "off")
|
||||||
set(libpng_intel_sources
|
set(libpng_intel_sources
|
||||||
intel/intel_init.c
|
intel/intel_init.c
|
||||||
intel/filter_sse2_intrinsics.c)
|
intel/filter_sse2_intrinsics.c)
|
||||||
if(${PNG_INTEL_SSE} STREQUAL "on")
|
if(PNG_INTEL_SSE STREQUAL "on")
|
||||||
add_definitions(-DPNG_INTEL_SSE_OPT=1)
|
add_definitions(-DPNG_INTEL_SSE_OPT=1)
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
@ -214,11 +213,11 @@ if(TARGET_ARCH MATCHES "^(mipsel|mips64el)")
|
|||||||
list(FIND PNG_MIPS_MSA_POSSIBLE_VALUES ${PNG_MIPS_MSA} index)
|
list(FIND PNG_MIPS_MSA_POSSIBLE_VALUES ${PNG_MIPS_MSA} index)
|
||||||
if(index EQUAL -1)
|
if(index EQUAL -1)
|
||||||
message(FATAL_ERROR "PNG_MIPS_MSA must be one of [${PNG_MIPS_MSA_POSSIBLE_VALUES}]")
|
message(FATAL_ERROR "PNG_MIPS_MSA must be one of [${PNG_MIPS_MSA_POSSIBLE_VALUES}]")
|
||||||
elseif(NOT ${PNG_MIPS_MSA} STREQUAL "off")
|
elseif(NOT PNG_MIPS_MSA STREQUAL "off")
|
||||||
set(libpng_mips_sources
|
set(libpng_mips_sources
|
||||||
mips/mips_init.c
|
mips/mips_init.c
|
||||||
mips/filter_msa_intrinsics.c)
|
mips/filter_msa_intrinsics.c)
|
||||||
if(${PNG_MIPS_MSA} STREQUAL "on")
|
if(PNG_MIPS_MSA STREQUAL "on")
|
||||||
add_definitions(-DPNG_MIPS_MSA_OPT=2)
|
add_definitions(-DPNG_MIPS_MSA_OPT=2)
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
@ -287,41 +286,6 @@ int main(void) { return 0; }
|
|||||||
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
|
|
||||||
# toolchains (it's not done in many other projects).
|
|
||||||
function(find_symbol_prefix)
|
|
||||||
set(SYMBOL_PREFIX)
|
|
||||||
|
|
||||||
execute_process(COMMAND "${CMAKE_C_COMPILER}" -E -
|
|
||||||
INPUT_FILE /dev/null
|
|
||||||
OUTPUT_VARIABLE OUT
|
|
||||||
RESULT_VARIABLE STATUS)
|
|
||||||
|
|
||||||
if(CPP_FAIL)
|
|
||||||
message(WARNING "Failed to run the C preprocessor")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
string(REPLACE "\n" ";" OUT "${OUT}")
|
|
||||||
foreach(line ${OUT})
|
|
||||||
string(REGEX MATCH "^PREFIX=" found_match "${line}")
|
|
||||||
if(found_match)
|
|
||||||
string(REGEX REPLACE "^PREFIX=(.*\)" "\\1" prefix "${line}")
|
|
||||||
string(REGEX MATCH "__USER_LABEL_PREFIX__" found_match "${prefix}")
|
|
||||||
if(found_match)
|
|
||||||
string(REGEX REPLACE "(.*)__USER_LABEL_PREFIX__(.*)" "\\1\\2" prefix "${prefix}")
|
|
||||||
endif()
|
|
||||||
set(SYMBOL_PREFIX "${prefix}")
|
|
||||||
endif()
|
|
||||||
endforeach()
|
|
||||||
|
|
||||||
message(STATUS "Symbol prefix: ${SYMBOL_PREFIX}")
|
|
||||||
set(SYMBOL_PREFIX "${SYMBOL_PREFIX}" PARENT_SCOPE)
|
|
||||||
endfunction()
|
|
||||||
|
|
||||||
if(UNIX)
|
|
||||||
find_symbol_prefix()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
find_program(AWK NAMES gawk awk)
|
find_program(AWK NAMES gawk awk)
|
||||||
|
|
||||||
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
||||||
@ -616,7 +580,7 @@ set(png_fix_itxt_sources
|
|||||||
contrib/tools/png-fix-itxt.c
|
contrib/tools/png-fix-itxt.c
|
||||||
)
|
)
|
||||||
|
|
||||||
if(MSVC OR (WIN32 AND (CMAKE_C_COMPILER_ID MATCHES ".*Clang")))
|
if(MSVC OR (WIN32 AND (CMAKE_C_COMPILER_ID MATCHES "Clang")))
|
||||||
add_definitions(-D_CRT_NONSTDC_NO_DEPRECATE)
|
add_definitions(-D_CRT_NONSTDC_NO_DEPRECATE)
|
||||||
add_definitions(-D_CRT_SECURE_NO_DEPRECATE)
|
add_definitions(-D_CRT_SECURE_NO_DEPRECATE)
|
||||||
endif()
|
endif()
|
||||||
@ -632,8 +596,8 @@ set(PNG_LIBRARY_TARGETS "")
|
|||||||
|
|
||||||
# Initialize the libpng library file names.
|
# Initialize the libpng library file names.
|
||||||
if(UNIX
|
if(UNIX
|
||||||
OR (WIN32 AND NOT "${CMAKE_SHARED_LIBRARY_PREFIX}" STREQUAL "")
|
OR (WIN32 AND NOT CMAKE_SHARED_LIBRARY_PREFIX STREQUAL "")
|
||||||
OR (WIN32 AND NOT "${CMAKE_STATIC_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.
|
# 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".
|
# 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.
|
# Let CMake prepend and append its usual prefixes and suffixes by default.
|
||||||
@ -823,37 +787,37 @@ if(PNG_TESTS AND PNG_SHARED)
|
|||||||
foreach(alpha_type none alpha)
|
foreach(alpha_type none alpha)
|
||||||
set(PNGSTEST_FILES)
|
set(PNGSTEST_FILES)
|
||||||
foreach(test_png ${TEST_PNGS})
|
foreach(test_png ${TEST_PNGS})
|
||||||
string(REGEX MATCH ".*-linear[-.].*" TEST_PNG_LINEAR "${test_png}")
|
string(REGEX MATCH "-linear[-.]" TEST_PNG_LINEAR "${test_png}")
|
||||||
string(REGEX MATCH ".*-sRGB[-.].*" TEST_PNG_SRGB "${test_png}")
|
string(REGEX MATCH "-sRGB[-.]" TEST_PNG_SRGB "${test_png}")
|
||||||
string(REGEX MATCH ".*-1.8[-.].*" TEST_PNG_G18 "${test_png}")
|
string(REGEX MATCH "-1.8[-.]" TEST_PNG_G18 "${test_png}")
|
||||||
string(REGEX MATCH ".*-alpha-.*" TEST_PNG_ALPHA "${test_png}")
|
string(REGEX MATCH "-alpha-" TEST_PNG_ALPHA "${test_png}")
|
||||||
|
|
||||||
set(TEST_PNG_VALID TRUE)
|
set(TEST_PNG_VALID TRUE)
|
||||||
|
|
||||||
if(TEST_PNG_ALPHA)
|
if(TEST_PNG_ALPHA)
|
||||||
if(NOT "${alpha_type}" STREQUAL "alpha")
|
if(NOT alpha_type STREQUAL "alpha")
|
||||||
set(TEST_PNG_VALID FALSE)
|
set(TEST_PNG_VALID FALSE)
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
if("${alpha_type}" STREQUAL "alpha")
|
if(alpha_type STREQUAL "alpha")
|
||||||
set(TEST_PNG_VALID FALSE)
|
set(TEST_PNG_VALID FALSE)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(TEST_PNG_LINEAR)
|
if(TEST_PNG_LINEAR)
|
||||||
if(NOT "${gamma_type}" STREQUAL "linear")
|
if(NOT gamma_type STREQUAL "linear")
|
||||||
set(TEST_PNG_VALID FALSE)
|
set(TEST_PNG_VALID FALSE)
|
||||||
endif()
|
endif()
|
||||||
elseif(TEST_PNG_SRGB)
|
elseif(TEST_PNG_SRGB)
|
||||||
if(NOT "${gamma_type}" STREQUAL "sRGB")
|
if(NOT gamma_type STREQUAL "sRGB")
|
||||||
set(TEST_PNG_VALID FALSE)
|
set(TEST_PNG_VALID FALSE)
|
||||||
endif()
|
endif()
|
||||||
elseif(TEST_PNG_G18)
|
elseif(TEST_PNG_G18)
|
||||||
if(NOT "${gamma_type}" STREQUAL "1.8")
|
if(NOT gamma_type STREQUAL "1.8")
|
||||||
set(TEST_PNG_VALID FALSE)
|
set(TEST_PNG_VALID FALSE)
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
if(NOT "${gamma_type}" STREQUAL "none")
|
if(NOT gamma_type STREQUAL "none")
|
||||||
set(TEST_PNG_VALID FALSE)
|
set(TEST_PNG_VALID FALSE)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
# genchk.cmake.in
|
# genchk.cmake.in
|
||||||
# Generate .chk from .out with awk (generic), based upon the automake logic.
|
# Generate .chk from .out with awk (generic), based upon the automake logic.
|
||||||
|
|
||||||
# Copyright (C) 2016 Glenn Randers-Pehrson
|
# Copyright (c) 2022-2023 Cosmin Truta
|
||||||
|
# Copyright (c) 2016 Glenn Randers-Pehrson
|
||||||
# Written by Roger Leigh, 2016
|
# Written by Roger Leigh, 2016
|
||||||
|
|
||||||
# This code is released under the libpng license.
|
# This code is released under the libpng license.
|
||||||
@ -21,7 +22,7 @@ get_filename_component(OUTPUTBASE "${OUTPUT}" NAME_WE)
|
|||||||
get_filename_component(INPUTDIR "${INPUT}" PATH)
|
get_filename_component(INPUTDIR "${INPUT}" PATH)
|
||||||
get_filename_component(OUTPUTDIR "${OUTPUT}" PATH)
|
get_filename_component(OUTPUTDIR "${OUTPUT}" PATH)
|
||||||
|
|
||||||
if("${INPUTEXT}" STREQUAL ".out" AND "${OUTPUTEXT}" STREQUAL ".chk")
|
if(INPUTEXT STREQUAL ".out" AND OUTPUTEXT STREQUAL ".chk")
|
||||||
# Generate .chk from .out with awk (generic)
|
# Generate .chk from .out with awk (generic)
|
||||||
file(REMOVE "${OUTPUT}" "${OUTPUTDIR}/${OUTPUTBASE}.new")
|
file(REMOVE "${OUTPUT}" "${OUTPUTDIR}/${OUTPUTBASE}.new")
|
||||||
execute_process(COMMAND "${AWK}" -f "${BINDIR}/scripts/checksym.awk"
|
execute_process(COMMAND "${AWK}" -f "${BINDIR}/scripts/checksym.awk"
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
# genout.cmake.in
|
# genout.cmake.in
|
||||||
# Generate .out from .c with awk (generic), based upon the automake logic.
|
# Generate .out from .c with awk (generic), based upon the automake logic.
|
||||||
|
|
||||||
# Copyright (C) 2016 Glenn Randers-Pehrson
|
# Copyright (c) 2022-2023 Cosmin Truta
|
||||||
|
# Copyright (c) 2016 Glenn Randers-Pehrson
|
||||||
# Written by Roger Leigh, 2016
|
# Written by Roger Leigh, 2016
|
||||||
|
|
||||||
# This code is released under the libpng license.
|
# This code is released under the libpng license.
|
||||||
@ -41,7 +42,7 @@ get_filename_component(OUTPUTBASE "${OUTPUT}" NAME_WE)
|
|||||||
get_filename_component(INPUTDIR "${INPUT}" PATH)
|
get_filename_component(INPUTDIR "${INPUT}" PATH)
|
||||||
get_filename_component(OUTPUTDIR "${OUTPUT}" PATH)
|
get_filename_component(OUTPUTDIR "${OUTPUT}" PATH)
|
||||||
|
|
||||||
if ("${INPUTEXT}" STREQUAL ".c" AND "${OUTPUTEXT}" STREQUAL ".out")
|
if(INPUTEXT STREQUAL ".c" AND OUTPUTEXT STREQUAL ".out")
|
||||||
get_filename_component(GENDIR "${OUTPUT}" PATH)
|
get_filename_component(GENDIR "${OUTPUT}" PATH)
|
||||||
file(MAKE_DIRECTORY "${GENDIR}")
|
file(MAKE_DIRECTORY "${GENDIR}")
|
||||||
|
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
# gensrc.cmake.in
|
# gensrc.cmake.in
|
||||||
# Generate source files with awk, based upon the automake logic.
|
# Generate source files with awk, based upon the automake logic.
|
||||||
|
|
||||||
# Copyright (C) 2016 Glenn Randers-Pehrson
|
# Copyright (c) 2022-2023 Cosmin Truta
|
||||||
|
# Copyright (c) 2016 Glenn Randers-Pehrson
|
||||||
# Written by Roger Leigh, 2016
|
# Written by Roger Leigh, 2016
|
||||||
|
|
||||||
# This code is released under the libpng license.
|
# This code is released under the libpng license.
|
||||||
@ -17,7 +18,7 @@ set(DFA_XTRA "@DFA_XTRA@")
|
|||||||
set(PNG_PREFIX "@PNG_PREFIX@")
|
set(PNG_PREFIX "@PNG_PREFIX@")
|
||||||
set(PNGLIB_VERSION "@PNGLIB_VERSION@")
|
set(PNGLIB_VERSION "@PNGLIB_VERSION@")
|
||||||
|
|
||||||
if("${OUTPUT}" STREQUAL "scripts/pnglibconf.c")
|
if(OUTPUT STREQUAL "scripts/pnglibconf.c")
|
||||||
# Generate scripts/pnglibconf.c
|
# Generate scripts/pnglibconf.c
|
||||||
|
|
||||||
file(REMOVE "${BINDIR}/pnglibconf.tf6" "${BINDIR}/pnglibconf.tf7")
|
file(REMOVE "${BINDIR}/pnglibconf.tf6" "${BINDIR}/pnglibconf.tf7")
|
||||||
@ -45,7 +46,7 @@ if("${OUTPUT}" STREQUAL "scripts/pnglibconf.c")
|
|||||||
file(MAKE_DIRECTORY "${BINDIR}/scripts")
|
file(MAKE_DIRECTORY "${BINDIR}/scripts")
|
||||||
file(RENAME "pnglibconf.tf7" "${BINDIR}/scripts/pnglibconf.c")
|
file(RENAME "pnglibconf.tf7" "${BINDIR}/scripts/pnglibconf.c")
|
||||||
|
|
||||||
elseif ("${OUTPUT}" STREQUAL "pnglibconf.c")
|
elseif(OUTPUT STREQUAL "pnglibconf.c")
|
||||||
# Generate pnglibconf.c
|
# Generate pnglibconf.c
|
||||||
|
|
||||||
file(REMOVE "${BINDIR}/pnglibconf.tf4" "${BINDIR}/pnglibconf.tf5")
|
file(REMOVE "${BINDIR}/pnglibconf.tf4" "${BINDIR}/pnglibconf.tf5")
|
||||||
@ -72,7 +73,7 @@ elseif ("${OUTPUT}" STREQUAL "pnglibconf.c")
|
|||||||
file(MAKE_DIRECTORY "${BINDIR}/scripts")
|
file(MAKE_DIRECTORY "${BINDIR}/scripts")
|
||||||
file(RENAME "pnglibconf.tf5" "${BINDIR}/pnglibconf.c")
|
file(RENAME "pnglibconf.tf5" "${BINDIR}/pnglibconf.c")
|
||||||
|
|
||||||
elseif ("${OUTPUT}" STREQUAL "pnglibconf.h")
|
elseif(OUTPUT STREQUAL "pnglibconf.h")
|
||||||
# Generate pnglibconf.h
|
# Generate pnglibconf.h
|
||||||
|
|
||||||
file(REMOVE "${BINDIR}/${OUTPUT}")
|
file(REMOVE "${BINDIR}/${OUTPUT}")
|
||||||
@ -101,7 +102,7 @@ elseif ("${OUTPUT}" STREQUAL "pnglibconf.h")
|
|||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
elseif ("${OUTPUT}" STREQUAL "pngprefix.h")
|
elseif(OUTPUT STREQUAL "pngprefix.h")
|
||||||
# Generate pngprefix.h
|
# Generate pngprefix.h
|
||||||
|
|
||||||
file(REMOVE "${BINDIR}/${OUTPUT}")
|
file(REMOVE "${BINDIR}/${OUTPUT}")
|
||||||
@ -123,7 +124,7 @@ elseif ("${OUTPUT}" STREQUAL "pngprefix.h")
|
|||||||
file(WRITE "${BINDIR}/${OUTPUT}" "/* No libpng symbol prefix configured. */")
|
file(WRITE "${BINDIR}/${OUTPUT}" "/* No libpng symbol prefix configured. */")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
elseif("${OUTPUT}" STREQUAL "scripts/pnglibconf.h.prebuilt")
|
elseif(OUTPUT STREQUAL "scripts/pnglibconf.h.prebuilt")
|
||||||
# Generate scripts/pnglibconf.h.prebuilt (fails build)
|
# Generate scripts/pnglibconf.h.prebuilt (fails build)
|
||||||
|
|
||||||
message(STATUS "Attempting to build scripts/pnglibconf.h.prebuilt")
|
message(STATUS "Attempting to build scripts/pnglibconf.h.prebuilt")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user