2009-08-28 12:06:45 +00:00
|
|
|
cmake_minimum_required(VERSION 2.4.3)
|
2010-01-04 16:06:38 +00:00
|
|
|
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
|
|
|
|
|
2009-10-31 17:50:05 +00:00
|
|
|
if(UNIX AND NOT DEFINED CMAKE_BUILD_TYPE)
|
2010-01-04 16:06:38 +00:00
|
|
|
set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING
|
|
|
|
"Choose the type of build, options are:
|
|
|
|
None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used)
|
|
|
|
Debug
|
|
|
|
Release
|
|
|
|
RelWithDebInfo
|
|
|
|
MinSizeRel.")
|
2009-10-31 17:50:05 +00:00
|
|
|
endif()
|
|
|
|
|
2010-01-04 16:06:38 +00:00
|
|
|
project(libpng C)
|
2009-10-31 17:50:05 +00:00
|
|
|
enable_testing()
|
2006-12-07 04:06:25 +00:00
|
|
|
|
2010-01-04 16:06:38 +00:00
|
|
|
# Copyright (C) 2007-2010 Glenn Randers-Pehrson
|
2009-06-29 01:26:26 +00:00
|
|
|
|
|
|
|
# This code is released under the libpng license.
|
|
|
|
# For conditions of distribution and use, see the disclaimer
|
|
|
|
# and license in png.h
|
2007-01-05 12:59:12 +00:00
|
|
|
|
2006-12-14 02:54:57 +00:00
|
|
|
set(PNGLIB_MAJOR 1)
|
|
|
|
set(PNGLIB_MINOR 2)
|
2015-05-09 13:11:33 +00:00
|
|
|
set(PNGLIB_RELEASE 54)
|
2006-12-14 02:54:57 +00:00
|
|
|
set(PNGLIB_NAME libpng${PNGLIB_MAJOR}${PNGLIB_MINOR})
|
|
|
|
set(PNGLIB_VERSION ${PNGLIB_MAJOR}.${PNGLIB_MINOR}.${PNGLIB_RELEASE})
|
2006-12-07 04:06:25 +00:00
|
|
|
|
|
|
|
# needed packages
|
|
|
|
find_package(ZLIB REQUIRED)
|
2009-08-28 12:06:45 +00:00
|
|
|
include_directories(${ZLIB_INCLUDE_DIR})
|
|
|
|
|
2006-12-14 02:54:57 +00:00
|
|
|
if(NOT WIN32)
|
2010-01-04 16:06:38 +00:00
|
|
|
find_library(M_LIBRARY
|
|
|
|
NAMES m
|
|
|
|
PATHS /usr/lib /usr/local/lib
|
|
|
|
)
|
|
|
|
if(NOT M_LIBRARY)
|
|
|
|
message(STATUS
|
|
|
|
"math library 'libm' not found - floating point support disabled")
|
|
|
|
endif()
|
2009-08-28 12:06:45 +00:00
|
|
|
else()
|
2010-01-04 16:06:38 +00:00
|
|
|
# not needed on windows
|
|
|
|
set(M_LIBRARY "")
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
2006-12-07 04:06:25 +00:00
|
|
|
|
2006-12-14 02:54:57 +00:00
|
|
|
# COMMAND LINE OPTIONS
|
2009-08-28 12:06:45 +00:00
|
|
|
if(DEFINED PNG_SHARED)
|
|
|
|
option(PNG_SHARED "Build shared lib" ${PNG_SHARED})
|
|
|
|
else()
|
|
|
|
option(PNG_SHARED "Build shared lib" ON)
|
|
|
|
endif()
|
|
|
|
if(DEFINED PNG_STATIC)
|
|
|
|
option(PNG_STATIC "Build static lib" ${PNG_STATIC})
|
|
|
|
else()
|
|
|
|
option(PNG_STATIC "Build static lib" ON)
|
|
|
|
endif()
|
|
|
|
|
2007-08-27 19:48:12 +00:00
|
|
|
if(MINGW)
|
2007-08-10 02:45:43 +00:00
|
|
|
option(PNG_TESTS "Build pngtest" NO)
|
2010-01-04 16:06:38 +00:00
|
|
|
else()
|
2007-08-10 02:45:43 +00:00
|
|
|
option(PNG_TESTS "Build pngtest" YES)
|
2010-01-04 16:06:38 +00:00
|
|
|
endif()
|
2009-08-28 12:06:45 +00:00
|
|
|
|
2006-12-14 02:54:57 +00:00
|
|
|
option(PNG_NO_CONSOLE_IO "FIXME" YES)
|
|
|
|
option(PNG_NO_STDIO "FIXME" YES)
|
2009-08-28 12:06:45 +00:00
|
|
|
option(PNG_DEBUG "Build with debug output" NO)
|
2006-12-14 02:54:57 +00:00
|
|
|
option(PNGARG "FIXME" YES)
|
2006-12-07 04:06:25 +00:00
|
|
|
#TODO:
|
|
|
|
# PNG_CONSOLE_IO_SUPPORTED
|
|
|
|
|
2006-12-14 02:54:57 +00:00
|
|
|
# maybe needs improving, but currently I don't know when we can enable what :)
|
2006-12-08 01:21:29 +00:00
|
|
|
set(png_asm_tmp "OFF")
|
|
|
|
if(NOT WIN32)
|
2010-01-04 16:06:38 +00:00
|
|
|
find_program(uname_executable NAMES uname PATHS /bin /usr/bin /usr/local/bin)
|
|
|
|
if(uname_executable)
|
|
|
|
exec_program(${uname_executable}
|
|
|
|
ARGS --machine OUTPUT_VARIABLE uname_output)
|
|
|
|
if("uname_output" MATCHES "^.*i[1-9]86.*$")
|
2006-12-14 02:54:57 +00:00
|
|
|
set(png_asm_tmp "ON")
|
2010-01-04 16:06:38 +00:00
|
|
|
else("uname_output" MATCHES "^.*i[1-9]86.*$")
|
2006-12-14 02:54:57 +00:00
|
|
|
set(png_asm_tmp "OFF")
|
2010-01-04 16:06:38 +00:00
|
|
|
endif("uname_output" MATCHES "^.*i[1-9]86.*$")
|
|
|
|
endif(uname_executable)
|
2009-08-28 12:06:45 +00:00
|
|
|
else()
|
2010-01-04 16:06:38 +00:00
|
|
|
# this env var is normally only set on win64
|
|
|
|
set(TEXT "ProgramFiles(x86)")
|
|
|
|
if("$ENV{${TEXT}}" STREQUAL "")
|
|
|
|
set(png_asm_tmp "ON")
|
|
|
|
endif("$ENV{${TEXT}}" STREQUAL "")
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
2006-12-08 01:21:29 +00:00
|
|
|
|
2006-12-14 02:54:57 +00:00
|
|
|
# SET LIBNAME
|
2009-08-28 12:06:45 +00:00
|
|
|
set(PNG_LIB_NAME png${PNGLIB_MAJOR}${PNGLIB_MINOR})
|
2006-12-07 04:06:25 +00:00
|
|
|
|
|
|
|
# to distinguish between debug and release lib
|
|
|
|
set(CMAKE_DEBUG_POSTFIX "d")
|
|
|
|
|
|
|
|
|
2006-12-14 02:54:57 +00:00
|
|
|
# OUR SOURCES
|
2006-12-07 04:06:25 +00:00
|
|
|
set(libpng_sources
|
2010-01-04 16:06:38 +00:00
|
|
|
png.h
|
|
|
|
pngconf.h
|
|
|
|
png.c
|
|
|
|
pngerror.c
|
|
|
|
pngget.c
|
|
|
|
pngmem.c
|
|
|
|
pngpread.c
|
|
|
|
pngread.c
|
|
|
|
pngrio.c
|
|
|
|
pngrtran.c
|
|
|
|
pngrutil.c
|
|
|
|
pngset.c
|
|
|
|
pngtrans.c
|
|
|
|
pngwio.c
|
|
|
|
pngwrite.c
|
|
|
|
pngwtran.c
|
|
|
|
pngwutil.c
|
2006-12-07 04:06:25 +00:00
|
|
|
)
|
|
|
|
set(pngtest_sources
|
2010-01-04 16:06:38 +00:00
|
|
|
pngtest.c
|
2006-12-07 04:06:25 +00:00
|
|
|
)
|
2006-12-14 02:54:57 +00:00
|
|
|
# SOME NEEDED DEFINITIONS
|
2009-11-09 13:18:26 +00:00
|
|
|
|
|
|
|
add_definitions(-DPNG_CONFIGURE_LIBPNG)
|
|
|
|
|
2010-02-20 01:41:39 +00:00
|
|
|
if(_AIX)
|
|
|
|
add_definitions(-D_ALL_SOURCE)
|
|
|
|
endif(_AIX)
|
|
|
|
|
2007-09-03 00:22:31 +00:00
|
|
|
if(MSVC)
|
|
|
|
add_definitions(-DPNG_NO_MODULEDEF -D_CRT_SECURE_NO_DEPRECATE)
|
|
|
|
endif(MSVC)
|
|
|
|
|
2009-08-28 12:06:45 +00:00
|
|
|
if(PNG_SHARED OR NOT MSVC)
|
2010-01-04 16:06:38 +00:00
|
|
|
#if building msvc static this has NOT to be defined
|
|
|
|
add_definitions(-DZLIB_DLL)
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
2006-12-07 04:06:25 +00:00
|
|
|
|
2007-09-01 20:12:50 +00:00
|
|
|
add_definitions(-DLIBPNG_NO_MMX)
|
|
|
|
add_definitions(-DPNG_NO_MMX_CODE)
|
2006-12-07 04:06:25 +00:00
|
|
|
|
2010-01-04 16:06:38 +00:00
|
|
|
|
2006-12-14 02:54:57 +00:00
|
|
|
if(PNG_CONSOLE_IO_SUPPORTED)
|
2010-01-04 16:06:38 +00:00
|
|
|
add_definitions(-DPNG_CONSOLE_IO_SUPPORTED)
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
2006-12-14 02:54:57 +00:00
|
|
|
|
|
|
|
if(PNG_NO_CONSOLE_IO)
|
2010-01-04 16:06:38 +00:00
|
|
|
add_definitions(-DPNG_NO_CONSOLE_IO)
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
2006-12-14 02:54:57 +00:00
|
|
|
|
|
|
|
if(PNG_NO_STDIO)
|
2010-01-04 16:06:38 +00:00
|
|
|
add_definitions(-DPNG_NO_STDIO)
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
2006-12-14 02:54:57 +00:00
|
|
|
|
|
|
|
if(PNG_DEBUG)
|
2010-01-04 16:06:38 +00:00
|
|
|
add_definitions(-DPNG_DEBUG)
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
2006-12-14 02:54:57 +00:00
|
|
|
|
2007-07-17 02:44:06 +00:00
|
|
|
if(NOT M_LIBRARY AND NOT WIN32)
|
2010-01-04 16:06:38 +00:00
|
|
|
add_definitions(-DPNG_NO_FLOATING_POINT_SUPPORTED)
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
2006-12-14 02:54:57 +00:00
|
|
|
|
|
|
|
# NOW BUILD OUR TARGET
|
2010-01-04 16:06:38 +00:00
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${ZLIB_INCLUDE_DIR})
|
2006-12-07 04:06:25 +00:00
|
|
|
|
|
|
|
if(PNG_SHARED)
|
2010-01-04 16:06:38 +00:00
|
|
|
add_library(${PNG_LIB_NAME} SHARED ${libpng_sources})
|
|
|
|
if(MSVC)
|
|
|
|
# msvc does not append 'lib' - do it here to have consistent name
|
|
|
|
set_target_properties(${PNG_LIB_NAME} PROPERTIES PREFIX "lib")
|
|
|
|
endif()
|
|
|
|
target_link_libraries(${PNG_LIB_NAME} ${ZLIB_LIBRARY} ${M_LIBRARY})
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
|
|
|
|
2007-03-06 05:48:36 +00:00
|
|
|
if(PNG_STATIC)
|
|
|
|
# does not work without changing name
|
2010-01-04 16:06:38 +00:00
|
|
|
set(PNG_LIB_NAME_STATIC ${PNG_LIB_NAME}_static)
|
|
|
|
add_library(${PNG_LIB_NAME_STATIC} STATIC ${libpng_sources})
|
|
|
|
if(MSVC)
|
|
|
|
# msvc does not append 'lib' - do it here to have consistent name
|
|
|
|
set_target_properties(${PNG_LIB_NAME_STATIC} PROPERTIES PREFIX "lib")
|
|
|
|
endif()
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
|
|
|
|
2006-12-07 04:06:25 +00:00
|
|
|
|
2006-12-08 01:21:29 +00:00
|
|
|
if(PNG_SHARED AND WIN32)
|
2010-01-04 16:06:38 +00:00
|
|
|
set_target_properties(${PNG_LIB_NAME} PROPERTIES DEFINE_SYMBOL PNG_BUILD_DLL)
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
2006-12-07 04:06:25 +00:00
|
|
|
|
2009-08-28 12:06:45 +00:00
|
|
|
if(PNG_TESTS AND PNG_SHARED)
|
2010-01-04 16:06:38 +00:00
|
|
|
# does not work with msvc due to png_lib_ver issue
|
|
|
|
add_executable(pngtest ${pngtest_sources})
|
|
|
|
target_link_libraries(pngtest ${PNG_LIB_NAME})
|
|
|
|
add_test(pngtest pngtest ${CMAKE_CURRENT_SOURCE_DIR}/pngtest.png)
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
2006-12-07 04:06:25 +00:00
|
|
|
|
|
|
|
|
2006-12-14 02:54:57 +00:00
|
|
|
# CREATE PKGCONFIG FILES
|
|
|
|
# we use the same files like ./configure, so we have to set its vars
|
2007-03-06 05:48:36 +00:00
|
|
|
set(prefix ${CMAKE_INSTALL_PREFIX})
|
|
|
|
set(exec_prefix ${CMAKE_INSTALL_PREFIX})
|
2006-12-14 02:54:57 +00:00
|
|
|
set(libdir ${CMAKE_INSTALL_PREFIX}/lib)
|
|
|
|
set(includedir ${CMAKE_INSTALL_PREFIX}/include)
|
|
|
|
|
2010-01-04 16:06:38 +00:00
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/libpng.pc.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/libpng.pc)
|
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/libpng-config.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/libpng-config)
|
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/libpng.pc.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}.pc)
|
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/libpng-config.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}-config)
|
2007-03-06 05:48:36 +00:00
|
|
|
|
|
|
|
# SET UP LINKS
|
2009-08-28 12:06:45 +00:00
|
|
|
if(PNG_SHARED)
|
|
|
|
set_target_properties(${PNG_LIB_NAME} PROPERTIES
|
2015-05-09 13:11:33 +00:00
|
|
|
# VERSION 0.${PNGLIB_RELEASE}.1.2.54beta01
|
2010-01-04 16:06:38 +00:00
|
|
|
VERSION 0.${PNGLIB_RELEASE}.0
|
|
|
|
SOVERSION 0
|
|
|
|
CLEAN_DIRECT_OUTPUT 1)
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
2007-08-27 19:48:12 +00:00
|
|
|
if(PNG_STATIC)
|
2009-08-28 12:06:45 +00:00
|
|
|
if(NOT WIN32)
|
|
|
|
# that's uncool on win32 - it overwrites our static import lib...
|
|
|
|
set_target_properties(${PNG_LIB_NAME_STATIC} PROPERTIES
|
2010-01-04 16:06:38 +00:00
|
|
|
OUTPUT_NAME ${PNG_LIB_NAME}
|
|
|
|
CLEAN_DIRECT_OUTPUT 1)
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# INSTALL
|
|
|
|
if(NOT SKIP_INSTALL_LIBRARIES AND NOT SKIP_INSTALL_ALL )
|
2010-01-04 16:06:38 +00:00
|
|
|
if(PNG_SHARED)
|
|
|
|
install(TARGETS ${PNG_LIB_NAME}
|
2009-08-28 12:06:45 +00:00
|
|
|
RUNTIME DESTINATION bin
|
|
|
|
LIBRARY DESTINATION lib
|
|
|
|
ARCHIVE DESTINATION lib)
|
2010-01-04 16:06:38 +00:00
|
|
|
endif()
|
|
|
|
if(PNG_STATIC)
|
|
|
|
install(TARGETS ${PNG_LIB_NAME_STATIC}
|
2009-08-28 12:06:45 +00:00
|
|
|
LIBRARY DESTINATION lib
|
|
|
|
ARCHIVE DESTINATION lib)
|
2010-01-04 16:06:38 +00:00
|
|
|
endif()
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT SKIP_INSTALL_HEADERS AND NOT SKIP_INSTALL_ALL )
|
2010-01-04 16:06:38 +00:00
|
|
|
install(FILES png.h pngconf.h DESTINATION include)
|
|
|
|
install(FILES png.h pngconf.h DESTINATION include/${PNGLIB_NAME})
|
2009-10-31 17:50:05 +00:00
|
|
|
endif()
|
|
|
|
if(NOT SKIP_INSTALL_EXECUTABLES AND NOT SKIP_INSTALL_ALL )
|
2010-01-04 16:06:38 +00:00
|
|
|
install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/libpng-config DESTINATION bin)
|
|
|
|
install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}-config
|
|
|
|
DESTINATION bin)
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
|
|
|
if(NOT SKIP_INSTALL_FILES AND NOT SKIP_INSTALL_ALL )
|
2010-01-04 16:06:38 +00:00
|
|
|
# Install man pages
|
|
|
|
install(FILES libpng.3 libpngpf.3 DESTINATION man/man3)
|
|
|
|
install(FILES png.5 DESTINATION man/man5)
|
|
|
|
# Install pkg-config files
|
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libpng.pc
|
|
|
|
DESTINATION lib/pkgconfig)
|
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libpng-config
|
|
|
|
DESTINATION bin)
|
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}.pc
|
|
|
|
DESTINATION lib/pkgconfig)
|
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}-config
|
|
|
|
DESTINATION bin)
|
2009-08-28 12:06:45 +00:00
|
|
|
endif()
|
2006-12-14 02:54:57 +00:00
|
|
|
|
2006-12-07 04:06:25 +00:00
|
|
|
# what's with libpng.txt and all the extra files?
|
|
|
|
|
|
|
|
|
2006-12-14 02:54:57 +00:00
|
|
|
# UNINSTALL
|
2006-12-07 04:06:25 +00:00
|
|
|
# do we need this?
|
|
|
|
|
|
|
|
|
2006-12-14 02:54:57 +00:00
|
|
|
# DIST
|
2006-12-07 04:06:25 +00:00
|
|
|
# do we need this?
|
|
|
|
|
|
|
|
# to create msvc import lib for mingw compiled shared lib
|
|
|
|
# pexports libpng.dll > libpng.def
|
|
|
|
# lib /def:libpng.def /machine:x86
|
2007-08-10 02:45:43 +00:00
|
|
|
|