forked from amazingfate/loongoffice
e.g. the example of https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/1524638 has the same output .urd using cpp with these flags as ucpp created Change-Id: Iadfd2deba7d365c66c3260fd6736c031987e107c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120347 Tested-by: Jenkins Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
82 lines
2.1 KiB
Makefile
82 lines
2.1 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_Executable_Executable,idlc))
|
|
|
|
$(eval $(call gb_Executable_set_include,idlc,\
|
|
-I$(SRCDIR)/idlc/inc \
|
|
-I$(SRCDIR)/idlc/source \
|
|
$$(INCLUDE) \
|
|
))
|
|
|
|
$(eval $(call gb_Executable_use_externals,idlc,\
|
|
boost_headers \
|
|
))
|
|
|
|
$(eval $(call gb_Executable_use_libraries,idlc,\
|
|
reg \
|
|
$(if $(filter TRUE,$(DISABLE_DYNLOADING)),store) \
|
|
sal \
|
|
salhelper \
|
|
))
|
|
|
|
$(eval $(call gb_Executable_add_grammars,idlc,\
|
|
idlc/source/parser \
|
|
))
|
|
|
|
$(eval $(call gb_Executable_add_scanners,idlc,\
|
|
idlc/source/scanner \
|
|
))
|
|
|
|
ifneq (,$(SYSTEM_UCPP))
|
|
|
|
$(eval $(call gb_Executable_add_defs,idlc,\
|
|
-DSYSTEM_UCPP \
|
|
-DUCPP=\"file://$(SYSTEM_UCPP)\" \
|
|
))
|
|
|
|
ifneq ($(SYSTEM_UCPP_IS_GCC),)
|
|
$(eval $(call gb_Executable_add_defs,idlc,\
|
|
-DSYSTEM_UCPP_IS_GCC \
|
|
))
|
|
endif
|
|
|
|
endif
|
|
|
|
$(eval $(call gb_Executable_add_exception_objects,idlc,\
|
|
idlc/source/idlcmain \
|
|
idlc/source/idlc \
|
|
idlc/source/idlccompile \
|
|
idlc/source/idlcproduce \
|
|
idlc/source/errorhandler \
|
|
idlc/source/options \
|
|
idlc/source/fehelper \
|
|
idlc/source/astdeclaration \
|
|
idlc/source/astscope \
|
|
idlc/source/aststack \
|
|
idlc/source/astdump \
|
|
idlc/source/astinterface \
|
|
idlc/source/aststruct \
|
|
idlc/source/aststructinstance \
|
|
idlc/source/astoperation \
|
|
idlc/source/astconstant \
|
|
idlc/source/astenum \
|
|
idlc/source/astexpression \
|
|
idlc/source/astservice \
|
|
))
|
|
|
|
# Without this, e.g. 'make clean; make CustomTarget_idlc/parser_test' may fail on Windows localized
|
|
# to something other than listed in Impl_getTextEncodingData, because osl_getThreadTextEncoding()
|
|
# returns Windows ACP, calling FullTextEncodingData ctor which loads the not-yet-built library
|
|
$(call gb_Executable_add_runtime_dependencies,idlc, \
|
|
$(call gb_Library_get_target,sal_textenc) \
|
|
)
|
|
|
|
# vim:set noet sw=4 ts=4:
|