Bump version to 24.04.3.4
[LibreOffice.git] / toolkit / Library_tk.mk
blobbcea9abb6d7ebfe55c60c8fda6d18df9742212ca
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 \
36 -DSVT_DLL_NAME=\"$(call gb_Library_get_runtime_filename,$(call gb_Library__get_name,svt))\" \
39 $(eval $(call gb_Library_use_sdk_api,tk))
41 $(eval $(call gb_Library_use_libraries,tk,\
42 comphelper \
43 cppu \
44 cppuhelper \
45 sal \
46 salhelper \
47 i18nlangtag \
48 svl \
49 tl \
50 utl \
51 vcl \
54 $(eval $(call gb_Library_add_exception_objects,tk,\
55 toolkit/source/awt/asynccallback \
56 toolkit/source/awt/stylesettings \
57 toolkit/source/awt/scrollabledialog \
58 toolkit/source/awt/vclxaccessiblecomponent \
59 toolkit/source/awt/vclxbitmap \
60 toolkit/source/awt/vclxcontainer \
61 toolkit/source/awt/vclxdevice \
62 toolkit/source/awt/vclxfont \
63 toolkit/source/awt/vclxgraphics \
64 toolkit/source/awt/vclxmenu \
65 toolkit/source/awt/vclxpointer \
66 toolkit/source/awt/vclxprinter \
67 toolkit/source/awt/vclxregion \
68 toolkit/source/awt/vclxspinbutton \
69 toolkit/source/awt/vclxsystemdependentwindow \
70 toolkit/source/awt/vclxtabpagecontainer \
71 toolkit/source/awt/animatedimagespeer \
72 toolkit/source/awt/vclxtoolkit \
73 toolkit/source/awt/vclxtopwindow \
74 toolkit/source/awt/vclxwindow \
75 toolkit/source/awt/vclxwindow1 \
76 toolkit/source/awt/vclxwindows \
77 toolkit/source/controls/accessiblecontrolcontext \
78 toolkit/source/controls/controlmodelcontainerbase \
79 toolkit/source/controls/dialogcontrol \
80 toolkit/source/controls/eventcontainer \
81 toolkit/source/controls/filectrl \
82 toolkit/source/controls/formattedcontrol \
83 toolkit/source/controls/geometrycontrolmodel \
84 toolkit/source/controls/grid/defaultgridcolumnmodel \
85 toolkit/source/controls/grid/defaultgriddatamodel \
86 toolkit/source/controls/grid/gridcolumn \
87 toolkit/source/controls/grid/grideventforwarder \
88 toolkit/source/controls/grid/sortablegriddatamodel \
89 toolkit/source/controls/grid/gridcontrol \
90 toolkit/source/controls/roadmapcontrol \
91 toolkit/source/controls/roadmapentry \
92 toolkit/source/controls/svtxgridcontrol \
93 toolkit/source/controls/svmedit \
94 toolkit/source/controls/tabpagecontainer \
95 toolkit/source/controls/tabpagemodel \
96 toolkit/source/controls/stdtabcontroller \
97 toolkit/source/controls/stdtabcontrollermodel \
98 toolkit/source/controls/tkscrollbar \
99 toolkit/source/controls/tkspinbutton \
100 toolkit/source/controls/animatedimages \
101 toolkit/source/controls/spinningprogress \
102 toolkit/source/controls/table/cellvalueconversion \
103 toolkit/source/controls/table/defaultinputhandler \
104 toolkit/source/controls/table/gridtablerenderer \
105 toolkit/source/controls/table/mousefunction \
106 toolkit/source/controls/table/tablecontrol \
107 toolkit/source/controls/table/tablecontrol_impl \
108 toolkit/source/controls/table/tabledatawindow \
109 toolkit/source/controls/table/tablegeometry \
110 toolkit/source/controls/tree/treecontrol \
111 toolkit/source/controls/tree/treecontrolpeer \
112 toolkit/source/controls/tree/treedatamodel \
113 toolkit/source/controls/unocontrol \
114 toolkit/source/controls/unocontrolbase \
115 toolkit/source/controls/unocontrolcontainer \
116 toolkit/source/controls/unocontrolcontainermodel \
117 toolkit/source/controls/unocontrolmodel \
118 toolkit/source/controls/unocontroltablemodel \
119 toolkit/source/controls/unocontrols \
120 toolkit/source/controls/unogridcolumnfacade \
121 toolkit/source/hatchwindow/documentcloser \
122 toolkit/source/hatchwindow/hatchwindow \
123 toolkit/source/hatchwindow/hatchwindowfactory \
124 toolkit/source/hatchwindow/ipwin \
125 toolkit/source/helper/accessibilityclient \
126 toolkit/source/helper/btndlg \
127 toolkit/source/helper/imagealign \
128 toolkit/source/helper/listenermultiplexer \
129 toolkit/source/helper/property \
130 toolkit/source/helper/servicenames \
131 toolkit/source/helper/tkresmgr \
132 toolkit/source/helper/unopropertyarrayhelper \
133 toolkit/source/helper/unowrapper \
134 toolkit/source/helper/vclunohelper \
137 ifeq ($(OS),MACOSX)
138 $(eval $(call gb_Library_add_cxxflags,tk,\
139 $(gb_OBJCXXFLAGS) \
141 $(eval $(call gb_Library_add_libs,tk,\
142 -lobjc \
144 endif
146 ifeq ($(OS),iOS)
147 $(eval $(call gb_Library_add_cxxflags,tk,\
148 $(gb_OBJCXXFLAGS)))
149 endif
151 # vim: set noet sw=4 ts=4: