569ff6727e
I had to fix some source files because of macro redefinitions and such stuff. Small modules like basic have a great win, too: make basic.clean && time make basic: with w/o pch pch accessibility 23s 1m59s basctl 30s 1m42s basic 56s 1m35s comphelper 23s 51s editeng 48s 2m04s forms 40s 1m40s unotools 19s 38s sd 3m37s 4m33s Change-Id: Id24cdcddbe2ff64820b42266325c25af1355558f Reviewed-on: https://gerrit.libreoffice.org/9293 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
102 lines
2.5 KiB
Makefile
102 lines
2.5 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_Library_Library,sdui))
|
|
|
|
$(eval $(call gb_Library_set_include,sdui,\
|
|
$$(INCLUDE) \
|
|
-I$(SRCDIR)/sd/inc \
|
|
-I$(SRCDIR)/sd/source/ui/inc \
|
|
))
|
|
|
|
ifeq ($(ENABLE_SDREMOTE),TRUE)
|
|
$(eval $(call gb_Library_add_defs,sdui,\
|
|
-DENABLE_SDREMOTE \
|
|
))
|
|
|
|
ifeq ($(ENABLE_SDREMOTE_BLUETOOTH),TRUE)
|
|
$(eval $(call gb_Library_add_defs,sdui,\
|
|
-DENABLE_SDREMOTE_BLUETOOTH \
|
|
))
|
|
endif
|
|
|
|
endif
|
|
|
|
$(eval $(call gb_Library_use_custom_headers,sdui,\
|
|
officecfg/registry \
|
|
))
|
|
|
|
$(eval $(call gb_Library_set_precompiled_header,sdui,$(SRCDIR)/sd/inc/pch/precompiled_sdui))
|
|
|
|
$(eval $(call gb_Library_use_external,sdui,boost_headers))
|
|
|
|
$(eval $(call gb_Library_use_sdk_api,sdui))
|
|
|
|
$(eval $(call gb_Library_use_libraries,sdui,\
|
|
basegfx \
|
|
comphelper \
|
|
cppcanvas \
|
|
cppu \
|
|
cppuhelper \
|
|
editeng \
|
|
i18nlangtag \
|
|
fwk \
|
|
fwl \
|
|
fwe \
|
|
sal \
|
|
sd \
|
|
sfx \
|
|
sot \
|
|
svl \
|
|
svt \
|
|
svxcore \
|
|
svx \
|
|
tl \
|
|
utl \
|
|
vcl \
|
|
$(gb_UWINAPI) \
|
|
))
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,sdui,\
|
|
sd/source/filter/html/htmlattr \
|
|
sd/source/filter/html/pubdlg \
|
|
sd/source/ui/dlg/brkdlg \
|
|
sd/source/ui/dlg/copydlg \
|
|
sd/source/ui/dlg/custsdlg \
|
|
sd/source/ui/dlg/dlgass \
|
|
sd/source/ui/dlg/dlgassim \
|
|
sd/source/ui/dlg/dlgchar \
|
|
sd/source/ui/dlg/dlgfield \
|
|
sd/source/ui/dlg/dlgolbul \
|
|
sd/source/ui/dlg/dlgpage \
|
|
sd/source/ui/dlg/dlgsnap \
|
|
sd/source/ui/dlg/headerfooterdlg \
|
|
sd/source/ui/dlg/inspagob \
|
|
sd/source/ui/dlg/masterlayoutdlg \
|
|
sd/source/ui/dlg/morphdlg \
|
|
sd/source/ui/dlg/paragr \
|
|
sd/source/ui/dlg/present \
|
|
sd/source/ui/dlg/prltempl \
|
|
sd/source/ui/dlg/prntopts \
|
|
sd/source/ui/dlg/RemoteDialog \
|
|
sd/source/ui/dlg/RemoteDialogClientBox \
|
|
sd/source/ui/dlg/sddlgfact \
|
|
sd/source/ui/dlg/sdpreslt \
|
|
sd/source/ui/dlg/sduiexp \
|
|
sd/source/ui/dlg/tabtempl \
|
|
sd/source/ui/dlg/tpaction \
|
|
sd/source/ui/dlg/tpoption \
|
|
sd/source/ui/dlg/vectdlg \
|
|
sd/source/ui/dlg/PhotoAlbumDialog \
|
|
))
|
|
|
|
# $(WORKDIR)/inc/sd/sddll0.hxx :
|
|
# echo "#define" DLL_NAME \"$(if $(filter-out WNT,$(OS)),lib)sd$(DLLPOSTFIX)$(DLLPOST)\" > $@
|
|
|
|
# vim: set noet sw=4 ts=4:
|