1############################################################### 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance 9# with the License. You may obtain a copy of the License at 10# 11# http://www.apache.org/licenses/LICENSE-2.0 12# 13# Unless required by applicable law or agreed to in writing, 14# software distributed under the License is distributed on an 15# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16# KIND, either express or implied. See the License for the 17# specific language governing permissions and limitations 18# under the License. 19# 20############################################################### 21 22 23 24$(eval $(call gb_Library_Library,sdui)) 25 26$(eval $(call gb_Library_add_api,sdui,\ 27 udkapi \ 28 offapi \ 29)) 30 31$(eval $(call gb_Library_set_include,sdui,\ 32 -I$(SRCDIR)/sd/source/ui/inc \ 33 -I$(SRCDIR)/sd/source/ui/inc/framework \ 34 -I$(SRCDIR)/sd/source/ui/inc/taskpane \ 35 -I$(SRCDIR)/sd/source/ui/inc/view \ 36 -I$(SRCDIR)/sd/source/ui/inc/tools \ 37 -I$(SRCDIR)/sd/source/ui/slidesorter/inc \ 38 -I$(SRCDIR)/sd/inc \ 39 -I$(SRCDIR)/sd/inc/helper \ 40 -I$(SRCDIR)/sd/inc/undo \ 41 -I$(SRCDIR)/sd/inc/pch \ 42 -I$(WORKDIR)/SdiTarget/sd/sdi \ 43 -I$(WORKDIR)/Misc/sd/ \ 44 $$(INCLUDE) \ 45 -I$(OUTDIR)/inc \ 46)) 47 48$(eval $(call gb_Library_add_linked_libs,sdui,\ 49 sd \ 50 editeng \ 51 svxcore \ 52 svx \ 53 sfx \ 54 basegfx \ 55 sot \ 56 stl \ 57 svl \ 58 svt \ 59 utl \ 60 vcl \ 61 tl \ 62 i18nisolang1 \ 63 comphelper \ 64 cppu \ 65 cppuhelper \ 66 sal \ 67 $(gb_STDLIBS) \ 68)) 69 70$(eval $(call gb_Library_add_exception_objects,sdui,\ 71sd/source/ui/dlg/masterlayoutdlg \ 72sd/source/ui/dlg/headerfooterdlg \ 73sd/source/ui/dlg/sduiexp \ 74sd/source/ui/dlg/sddlgfact \ 75sd/source/ui/dlg/brkdlg \ 76sd/source/ui/dlg/copydlg \ 77sd/source/ui/dlg/custsdlg \ 78sd/source/ui/dlg/dlgchar \ 79sd/source/ui/dlg/dlgass \ 80sd/source/ui/dlg/dlgassim \ 81sd/source/ui/dlg/dlgfield \ 82sd/source/ui/dlg/dlgpage \ 83sd/source/ui/dlg/dlgsnap \ 84sd/source/ui/dlg/ins_paste \ 85sd/source/ui/dlg/inspagob \ 86sd/source/ui/dlg/morphdlg \ 87sd/source/ui/dlg/dlgolbul \ 88sd/source/ui/dlg/paragr \ 89sd/source/ui/dlg/present \ 90sd/source/ui/dlg/prltempl \ 91sd/source/ui/dlg/sdpreslt \ 92sd/source/ui/dlg/tabtempl \ 93sd/source/ui/dlg/tpaction \ 94sd/source/ui/dlg/tpoption \ 95sd/source/ui/dlg/vectdlg \ 96sd/source/ui/dlg/prntopts \ 97sd/source/ui/dlg/layeroptionsdlg \ 98sd/source/ui/func/bulmaper \ 99sd/source/filter/html/htmlattr \ 100sd/source/filter/html/buttonset \ 101sd/source/filter/html/pubdlg \ 102)) 103 104# vim: set noet sw=4 ts=4: 105