Version 4.2.0.1, tag libreoffice-4.2.0.1
[LibreOffice.git] / vbahelper / Library_msforms.mk
bloba1a8bcd8b319c5cc11de070d5588901b3675dfb6
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 # MODULE is the name of the module the makefile is located in
22 # declare a library
23 # LIB is the name of the library as it is found in Repository.mk
24 $(eval $(call gb_Library_Library,msforms))
26 # in case UNO services are exported: declare location of component file
27 $(eval $(call gb_Library_set_componentfile,msforms,vbahelper/util/msforms))
29 $(eval $(call gb_Library_use_external,msforms,boost_headers))
31 $(eval $(call gb_Library_use_api,msforms,\
32 udkapi \
33 offapi \
34 oovbaapi \
37 # add libraries to be linked to LIB; again these names need to be given as
38 # specified in Repository.mk
39 $(eval $(call gb_Library_use_libraries,msforms,\
40 comphelper \
41 cppu \
42 cppuhelper \
43 sal \
44 sb \
45 sfx \
46 svl \
47 svt \
48 svx \
49 svxcore \
50 tk \
51 tl \
52 vbahelper \
53 vcl \
54 $(gb_UWINAPI) \
57 # add all source files that shall be compiled with exceptions enabled
58 # the name is relative to $(SRCROOT) and must not contain an extension
59 $(eval $(call gb_Library_add_exception_objects,msforms,\
60 vbahelper/source/msforms/service \
61 vbahelper/source/msforms/vbabutton \
62 vbahelper/source/msforms/vbacheckbox \
63 vbahelper/source/msforms/vbacombobox \
64 vbahelper/source/msforms/vbacontrol \
65 vbahelper/source/msforms/vbacontrols \
66 vbahelper/source/msforms/vbaframe \
67 vbahelper/source/msforms/vbaimage \
68 vbahelper/source/msforms/vbalabel \
69 vbahelper/source/msforms/vbalistbox \
70 vbahelper/source/msforms/vbalistcontrolhelper \
71 vbahelper/source/msforms/vbamultipage \
72 vbahelper/source/msforms/vbanewfont \
73 vbahelper/source/msforms/vbapages \
74 vbahelper/source/msforms/vbaprogressbar \
75 vbahelper/source/msforms/vbaradiobutton \
76 vbahelper/source/msforms/vbascrollbar \
77 vbahelper/source/msforms/vbaspinbutton \
78 vbahelper/source/msforms/vbasystemaxcontrol \
79 vbahelper/source/msforms/vbatextbox \
80 vbahelper/source/msforms/vbatogglebutton \
81 vbahelper/source/msforms/vbauserform \
84 # vim: set noet sw=4 ts=4: