office-gobmx/external/libwebp/ExternalProject_libwebp.mk
Luboš Luňák 1661a3ee77 use proper MSVC runtime lib for libwebp
Change-Id: Icf976bb4a4593bfa8e8fc506d4c5e86cb7f88671
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133705
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2022-05-03 06:54:08 +02:00

58 lines
2 KiB
Makefile

# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
$(eval $(call gb_ExternalProject_ExternalProject,libwebp))
$(eval $(call gb_ExternalProject_register_targets,libwebp,\
build \
))
ifeq ($(COM),MSC)
$(eval $(call gb_ExternalProject_use_nmake,libwebp,build))
# Explicitly passing in ARCH (for the known architectures, at least) avoids
# workdir/UnpackedTarball/libwebp/Makefile.vc not being able to detect it when CC is clang-cl:
$(call gb_ExternalProject_get_state_target,libwebp,build):
$(call gb_Trace_StartRange,libwebp,EXTERNAL)
$(call gb_ExternalProject_run,build,\
nmake -nologo -f Makefile.vc CFG=$(if $(MSVC_USE_DEBUG_RUNTIME),debug,release)-static RTLIBCFG=dynamic OBJDIR=output \
$(if $(filter INTEL,$(CPUNAME)),ARCH=x86, \
$(if $(filter X86_64,$(CPUNAME)),ARCH=x64, \
$(if $(filter AARCH64,$(CPUNAME)),ARCH=ARM))) \
)
$(call gb_Trace_EndRange,libwebp,EXTERNAL)
else
$(eval $(call gb_ExternalProject_use_autoconf,libwebp,build))
$(call gb_ExternalProject_get_state_target,libwebp,build) :
$(call gb_Trace_StartRange,libwebp,EXTERNAL)
$(call gb_ExternalProject_run,build,\
export PKG_CONFIG="" \
&& MAKE=$(MAKE) $(gb_RUN_CONFIGURE) ./configure \
--enable-static \
--with-pic \
--disable-shared \
--disable-gl \
--disable-sdl \
--disable-png \
--disable-jpeg \
--disable-tiff \
--disable-gif \
--disable-wic \
$(if $(verbose),--disable-silent-rules,--enable-silent-rules) \
CFLAGS="$(CFLAGS) $(call gb_ExternalProject_get_build_flags,libwebp)" \
CPPFLAGS="$(CPPFLAGS) $(BOOST_CPPFLAGS)" \
LDFLAGS="$(call gb_ExternalProject_get_link_flags,libwebp)" \
$(gb_CONFIGURE_PLATFORMS) \
&& $(MAKE) \
)
$(call gb_Trace_EndRange,libwebp,EXTERNAL)
endif
# vim: set noet sw=4 ts=4: