2017-07-25 16:37:55 +02:00
|
|
|
# ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
#
|
|
|
|
# ***** END GPL LICENSE BLOCK *****
|
|
|
|
|
2020-07-06 15:28:19 +02:00
|
|
|
if(WITH_WEBP)
|
|
|
|
set(WITH_TIFF_WEBP ON)
|
|
|
|
else()
|
|
|
|
set(WITH_TIFF_WEBP OFF)
|
|
|
|
endif()
|
|
|
|
|
2017-07-25 16:37:55 +02:00
|
|
|
set(TIFF_EXTRA_ARGS
|
2019-04-17 06:35:54 +02:00
|
|
|
-DZLIB_LIBRARY=${LIBDIR}/zlib/lib/${ZLIB_LIBRARY}
|
|
|
|
-DZLIB_INCLUDE_DIR=${LIBDIR}/zlib/include
|
|
|
|
-DPNG_STATIC=ON
|
|
|
|
-DBUILD_SHARED_LIBS=OFF
|
|
|
|
-Dlzma=OFF
|
|
|
|
-Djbig=OFF
|
2020-07-06 15:28:19 +02:00
|
|
|
-Dzstd=OFF
|
|
|
|
-Dwebp=${WITH_TIFF_WEBP}
|
2017-07-25 16:37:55 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
ExternalProject_Add(external_tiff
|
2021-03-16 14:10:30 +01:00
|
|
|
URL file://${PACKAGE_DIR}/${TIFF_FILE}
|
2019-04-17 06:35:54 +02:00
|
|
|
DOWNLOAD_DIR ${DOWNLOAD_DIR}
|
2021-03-16 14:10:30 +01:00
|
|
|
URL_HASH ${TIFF_HASH_TYPE}=${TIFF_HASH}
|
2019-04-17 06:35:54 +02:00
|
|
|
PREFIX ${BUILD_DIR}/tiff
|
|
|
|
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${LIBDIR}/tiff ${DEFAULT_CMAKE_FLAGS} ${TIFF_EXTRA_ARGS}
|
|
|
|
INSTALL_DIR ${LIBDIR}/tiff
|
2017-07-25 16:37:55 +02:00
|
|
|
)
|
|
|
|
|
2017-11-05 14:50:15 +11:00
|
|
|
add_dependencies(
|
2019-04-17 06:35:54 +02:00
|
|
|
external_tiff
|
|
|
|
external_zlib
|
2017-11-05 14:50:15 +11:00
|
|
|
)
|
2017-07-25 16:37:55 +02:00
|
|
|
|
2019-01-14 15:09:48 +01:00
|
|
|
if(WIN32 AND BUILD_MODE STREQUAL Debug)
|
2019-04-17 06:35:54 +02:00
|
|
|
ExternalProject_Add_Step(external_tiff after_install
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy ${LIBDIR}/tiff/lib/tiffd${LIBEXT} ${LIBDIR}/tiff/lib/tiff${LIBEXT}
|
|
|
|
DEPENDEES install
|
|
|
|
)
|
2017-07-25 16:37:55 +02:00
|
|
|
endif()
|