Revert "reduce symbol visibility in sw"
[LibreOffice.git] / toolkit / Library_tk.mk
blobcfdd3ce9a371ce90a0ee26524aecca7fd6dec1c6
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/.
9 # This file incorporates work covered by the following license notice:
11 # Licensed to the Apache Software Foundation (ASF) under one or more
12 # contributor license agreements. See the NOTICE file distributed
13 # with this work for additional information regarding copyright
14 # ownership. The ASF licenses this file to you under the Apache
15 # License, Version 2.0 (the "License"); you may not use this file
16 # except in compliance with the License. You may obtain a copy of
17 # the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 $(eval $(call gb_Library_Library,tk))
22 $(eval $(call gb_Library_set_componentfile,tk,toolkit/util/tk,services))
24 $(eval $(call gb_Library_use_externals,tk,\
25 boost_headers \
28 $(eval $(call gb_Library_set_include,tk,\
29 $$(INCLUDE) \
30 -I$(SRCDIR)/toolkit/inc \
31 -I$(SRCDIR)/toolkit/source \
34 $(eval $(call gb_Library_add_defs,tk,\
35 -DTOOLKIT_DLLIMPLEMENTATION \
38 $(eval $(call gb_Library_use_sdk_api,tk))
40 $(eval $(call gb_Library_use_libraries,tk,\
41 comphelper \
42 cppu \
43 cppuhelper \
44 sal \
45 salhelper \
46 i18nlangtag \
47 svl \
48 tl \
49 utl \
50 vcl \
53 $(eval $(call gb_Library_add_exception_objects,tk,\
54 toolkit/source/awt/asynccallback \
55 toolkit/source/awt/stylesettings \
56 toolkit/source/awt/scrollabledialog \
57 toolkit/source/awt/vclxaccessiblecomponent \
58 toolkit/source/awt/vclxbitmap \
59 toolkit/source/awt/vclxcontainer \
60 toolkit/source/awt/vclxdevice \
61 toolkit/source/awt/vclxfont \
62 toolkit/source/awt/vclxgraphics \
63 toolkit/source/awt/vclxmenu \
64 toolkit/source/awt/vclxpointer \
65 toolkit/source/awt/vclxprinter \
66 toolkit/source/awt/vclxregion \
67 toolkit/source/awt/vclxspinbutton \
68 toolkit/source/awt/vclxsystemdependentwindow \
69 toolkit/source/awt/vclxtabpagecontainer \
70 toolkit/source/awt/animatedimagespeer \
71 toolkit/source/awt/vclxtoolkit \
72 toolkit/source/awt/vclxtopwindow \
73 toolkit/source/awt/vclxwindow \
74 toolkit/source/awt/vclxwindow1 \
75 toolkit/source/awt/vclxwindows \
76 toolkit/source/controls/accessiblecontrolcontext \
77 toolkit/source/controls/controlmodelcontainerbase \
78 toolkit/source/controls/dialogcontrol \
79 toolkit/source/controls/eventcontainer \
80 toolkit/source/controls/filectrl \
81 toolkit/source/controls/formattedcontrol \
82 toolkit/source/controls/geometrycontrolmodel \
83 toolkit/source/controls/grid/defaultgridcolumnmodel \
84 toolkit/source/controls/grid/defaultgriddatamodel \
85 toolkit/source/controls/grid/gridcolumn \
86 toolkit/source/controls/grid/grideventforwarder \
87 toolkit/source/controls/grid/sortablegriddatamodel \
88 toolkit/source/controls/grid/gridcontrol \
89 toolkit/source/controls/roadmapcontrol \
90 toolkit/source/controls/roadmapentry \
91 toolkit/source/controls/svtxgridcontrol \
92 toolkit/source/controls/svmedit \
93 toolkit/source/controls/tabpagecontainer \
94 toolkit/source/controls/tabpagemodel \
95 toolkit/source/controls/stdtabcontroller \
96 toolkit/source/controls/stdtabcontrollermodel \
97 toolkit/source/controls/tkscrollbar \
98 toolkit/source/controls/tkspinbutton \
99 toolkit/source/controls/animatedimages \
100 toolkit/source/controls/spinningprogress \
101 toolkit/source/controls/table/cellvalueconversion \
102 toolkit/source/controls/table/defaultinputhandler \
103 toolkit/source/controls/table/gridtablerenderer \
104 toolkit/source/controls/table/mousefunction \
105 toolkit/source/controls/table/tablecontrol \
106 toolkit/source/controls/table/tablecontrol_impl \
107 toolkit/source/controls/table/tabledatawindow \
108 toolkit/source/controls/table/tablegeometry \
109 toolkit/source/controls/tree/treecontrol \
110 toolkit/source/controls/tree/treecontrolpeer \
111 toolkit/source/controls/tree/treedatamodel \
112 toolkit/source/controls/unocontrol \
113 toolkit/source/controls/unocontrolbase \
114 toolkit/source/controls/unocontrolcontainer \
115 toolkit/source/controls/unocontrolcontainermodel \
116 toolkit/source/controls/unocontrolmodel \
117 toolkit/source/controls/unocontroltablemodel \
118 toolkit/source/controls/unocontrols \
119 toolkit/source/controls/unogridcolumnfacade \
120 toolkit/source/hatchwindow/documentcloser \
121 toolkit/source/hatchwindow/hatchwindow \
122 toolkit/source/hatchwindow/hatchwindowfactory \
123 toolkit/source/hatchwindow/ipwin \
124 toolkit/source/helper/accessibilityclient \
125 toolkit/source/helper/btndlg \
126 toolkit/source/helper/imagealign \
127 toolkit/source/helper/listenermultiplexer \
128 toolkit/source/helper/property \
129 toolkit/source/helper/tkresmgr \
130 toolkit/source/helper/unopropertyarrayhelper \
131 toolkit/source/helper/unowrapper \
132 toolkit/source/helper/vclunohelper \
135 ifeq ($(OS),MACOSX)
136 $(eval $(call gb_Library_add_cxxflags,tk,\
137 $(gb_OBJCXXFLAGS) \
139 $(eval $(call gb_Library_add_libs,tk,\
140 -lobjc \
142 endif
144 ifeq ($(OS),iOS)
145 $(eval $(call gb_Library_add_cxxflags,tk,\
146 $(gb_OBJCXXFLAGS)))
147 endif
149 # vim: set noet sw=4 ts=4: