bump product version to 5.0.4.1
[LibreOffice.git] / toolkit / Library_tk.mk
blob31ea037148a8e0f3c9601235fdd410450886d806
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))
24 $(eval $(call gb_Library_use_external,tk,boost_headers))
26 $(eval $(call gb_Library_set_include,tk,\
27 $$(INCLUDE) \
28 -I$(SRCDIR)/toolkit/inc \
29 -I$(SRCDIR)/toolkit/source \
32 $(eval $(call gb_Library_add_defs,tk,\
33 -DTOOLKIT_DLLIMPLEMENTATION \
34 -DSVT_DLL_NAME=\"$(call gb_Library_get_runtime_filename,$(call gb_Library__get_name,svt))\" \
37 $(eval $(call gb_Library_use_sdk_api,tk))
39 $(eval $(call gb_Library_use_libraries,tk,\
40 comphelper \
41 cppu \
42 cppuhelper \
43 sal \
44 salhelper \
45 i18nlangtag \
46 tl \
47 utl \
48 vcl \
49 $(gb_UWINAPI) \
52 $(eval $(call gb_Library_add_exception_objects,tk,\
53 toolkit/source/awt/asynccallback \
54 toolkit/source/awt/stylesettings \
55 toolkit/source/awt/scrollabledialog \
56 toolkit/source/awt/vclxaccessiblecomponent \
57 toolkit/source/awt/vclxbitmap \
58 toolkit/source/awt/vclxcontainer \
59 toolkit/source/awt/vclxdevice \
60 toolkit/source/awt/vclxfont \
61 toolkit/source/awt/vclxgraphics \
62 toolkit/source/awt/vclxmenu \
63 toolkit/source/awt/vclxpointer \
64 toolkit/source/awt/vclxprinter \
65 toolkit/source/awt/vclxregion \
66 toolkit/source/awt/vclxspinbutton \
67 toolkit/source/awt/vclxsystemdependentwindow \
68 toolkit/source/awt/vclxtabpagecontainer \
69 toolkit/source/awt/animatedimagespeer \
70 toolkit/source/awt/vclxtoolkit \
71 toolkit/source/awt/vclxtopwindow \
72 toolkit/source/awt/vclxwindow \
73 toolkit/source/awt/vclxwindow1 \
74 toolkit/source/awt/vclxwindows \
75 toolkit/source/controls/accessiblecontrolcontext \
76 toolkit/source/controls/controlmodelcontainerbase \
77 toolkit/source/controls/dialogcontrol \
78 toolkit/source/controls/eventcontainer \
79 toolkit/source/controls/formattedcontrol \
80 toolkit/source/controls/geometrycontrolmodel \
81 toolkit/source/controls/grid/defaultgridcolumnmodel \
82 toolkit/source/controls/grid/defaultgriddatamodel \
83 toolkit/source/controls/grid/gridcolumn \
84 toolkit/source/controls/grid/grideventforwarder \
85 toolkit/source/controls/grid/sortablegriddatamodel \
86 toolkit/source/controls/grid/gridcontrol \
87 toolkit/source/controls/roadmapcontrol \
88 toolkit/source/controls/roadmapentry \
89 toolkit/source/controls/tabpagecontainer \
90 toolkit/source/controls/tabpagemodel \
91 toolkit/source/controls/stdtabcontroller \
92 toolkit/source/controls/stdtabcontrollermodel \
93 toolkit/source/controls/tkscrollbar \
94 toolkit/source/controls/tkspinbutton \
95 toolkit/source/controls/animatedimages \
96 toolkit/source/controls/spinningprogress \
97 toolkit/source/controls/tree/treecontrol \
98 toolkit/source/controls/tree/treedatamodel \
99 toolkit/source/controls/unocontrol \
100 toolkit/source/controls/unocontrolbase \
101 toolkit/source/controls/unocontrolcontainer \
102 toolkit/source/controls/unocontrolcontainermodel \
103 toolkit/source/controls/unocontrolmodel \
104 toolkit/source/controls/unocontrols \
105 toolkit/source/helper/accessibilityclient \
106 toolkit/source/helper/externallock \
107 toolkit/source/helper/formpdfexport \
108 toolkit/source/helper/imagealign \
109 toolkit/source/helper/listenermultiplexer \
110 toolkit/source/helper/property \
111 toolkit/source/helper/servicenames \
112 toolkit/source/helper/tkresmgr \
113 toolkit/source/helper/unopropertyarrayhelper \
114 toolkit/source/helper/unowrapper \
115 toolkit/source/helper/vclunohelper \
118 ifeq ($(OS),MACOSX)
119 $(eval $(call gb_Library_add_cxxflags,tk,\
120 $(gb_OBJCXXFLAGS) \
122 endif
124 ifeq ($(OS),IOS)
125 $(eval $(call gb_Library_add_cxxflags,tk,\
126 $(gb_OBJCXXFLAGS)))
127 endif
129 # vim: set noet sw=4 ts=4: