tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / external / libebook / ExternalProject_libebook.mk
blobe1b04df38087d88f9018414677d7639d2ea3f879
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 $(eval $(call gb_ExternalProject_ExternalProject,libebook))
12 $(eval $(call gb_ExternalProject_use_autoconf,libebook,build))
14 $(eval $(call gb_ExternalProject_register_targets,libebook,\
15 build \
18 $(eval $(call gb_ExternalProject_use_externals,libebook,\
19 boost_headers \
20 icu \
21 liblangtag \
22 libxml2 \
23 revenge \
24 zlib \
27 $(call gb_ExternalProject_get_state_target,libebook,build) :
28 $(call gb_Trace_StartRange,libebook,EXTERNAL)
29 $(call gb_ExternalProject_run,build,\
30 export PKG_CONFIG="" \
31 && unset MSYS_NO_PATHCONV && MAKE=$(MAKE) $(gb_RUN_CONFIGURE) ./configure \
32 --with-pic \
33 --enable-static \
34 --disable-shared \
35 --without-docs \
36 --without-tools \
37 --disable-tests \
38 $(if $(ENABLE_DEBUG),--enable-debug,--disable-debug) \
39 $(if $(verbose),--disable-silent-rules,--enable-silent-rules) \
40 --disable-werror \
41 --disable-weffc \
42 CXXFLAGS="$(gb_CXXFLAGS) $(call gb_ExternalProject_get_build_flags,libebook)" \
43 CPPFLAGS="$(CPPFLAGS) $(BOOST_CPPFLAGS)" \
44 LDFLAGS="$(call gb_ExternalProject_get_link_flags,libebook)" \
45 LANGTAG_CFLAGS="$(LIBLANGTAG_CFLAGS)" \
46 LANGTAG_LIBS="$(LIBLANGTAG_LIBS)" \
47 XML_CFLAGS="$(LIBXML_CFLAGS)" \
48 XML_LIBS="$(LIBXML_LIBS)" \
49 $(gb_CONFIGURE_PLATFORMS) \
50 && $(MAKE) \
52 $(call gb_Trace_EndRange,libebook,EXTERNAL)
54 # vim: set noet sw=4 ts=4: