fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / fontconfig / ExternalProject_fontconfig.mk
blobb520a118fc198384c98b4265ec77af3f49caff60
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,fontconfig))
12 $(eval $(call gb_ExternalProject_use_packages,fontconfig,\
13 freetype \
16 $(eval $(call gb_ExternalProject_register_targets,fontconfig,\
17 build \
20 $(call gb_ExternalProject_get_state_target,fontconfig,build) :
21 $(call gb_ExternalProject_run,build,\
22 CFLAGS="$(if $(debug),-g) $(gb_VISIBILITY_FLAGS)" $(if $(filter ANDROID,$(OS)),LIBS="-lm") \
23 ./configure \
24 --disable-shared \
25 --with-arch=arm \
26 --with-expat-includes=$(call gb_UnpackedTarball_get_dir,expat)/lib \
27 --with-expat-lib=$(OUTDIR)/lib \
28 --with-freetype-config=$(OUTDIR)/bin/freetype-config \
29 --build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) \
30 && $(MAKE) \
33 # vim: set noet sw=4 ts=4: