Copy the gcc's stdlibs to solver even if not packaging them
[LibreOffice.git] / vbahelper / Library_msforms.mk
blob235042500da20975bbe774d728a97392a13c840d
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
2 #*************************************************************************
4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 #
6 # Copyright 2000, 2011 Oracle and/or its affiliates.
8 # OpenOffice.org - a multi-platform office productivity suite
10 # This file is part of OpenOffice.org.
12 # OpenOffice.org is free software: you can redistribute it and/or modify
13 # it under the terms of the GNU Lesser General Public License version 3
14 # only, as published by the Free Software Foundation.
16 # OpenOffice.org is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU Lesser General Public License version 3 for more details
20 # (a copy is included in the LICENSE file that accompanied this code).
22 # You should have received a copy of the GNU Lesser General Public License
23 # version 3 along with OpenOffice.org. If not, see
24 # <http://www.openoffice.org/license.html>
25 # for a copy of the LGPLv3 License.
27 #*************************************************************************
29 # MODULE is the name of the module the makefile is located in
31 # declare a library
32 # LIB is the name of the library as it is found in Repository.mk
33 $(eval $(call gb_Library_Library,msforms))
35 # in case UNO services are exported: declare location of component file
36 $(eval $(call gb_Library_set_componentfile,msforms,vbahelper/util/msforms))
38 # add any additional include paths for this library here
39 $(eval $(call gb_Library_set_include,msforms,\
40 $$(INCLUDE) \
43 $(eval $(call gb_Library_add_api,msforms,\
44 udkapi \
45 offapi \
46 oovbaapi \
49 # add libraries to be linked to LIB; again these names need to be given as
50 # specified in Repository.mk
51 $(eval $(call gb_Library_add_linked_libs,msforms,\
52 comphelper \
53 cppu \
54 cppuhelper \
55 sal \
56 sb \
57 sfx \
58 svl \
59 svt \
60 svx \
61 tk \
62 tl \
63 vbahelper \
64 vcl \
65 $(gb_STDLIBS) \
68 # add all source files that shall be compiled with exceptions enabled
69 # the name is relative to $(SRCROOT) and must not contain an extension
70 $(eval $(call gb_Library_add_exception_objects,msforms,\
71 vbahelper/source/msforms/service \
72 vbahelper/source/msforms/vbabutton \
73 vbahelper/source/msforms/vbacheckbox \
74 vbahelper/source/msforms/vbacombobox \
75 vbahelper/source/msforms/vbacontrol \
76 vbahelper/source/msforms/vbacontrols \
77 vbahelper/source/msforms/vbaframe \
78 vbahelper/source/msforms/vbaimage \
79 vbahelper/source/msforms/vbalabel \
80 vbahelper/source/msforms/vbalistbox \
81 vbahelper/source/msforms/vbalistcontrolhelper \
82 vbahelper/source/msforms/vbamultipage \
83 vbahelper/source/msforms/vbanewfont \
84 vbahelper/source/msforms/vbapages \
85 vbahelper/source/msforms/vbaprogressbar \
86 vbahelper/source/msforms/vbaradiobutton \
87 vbahelper/source/msforms/vbascrollbar \
88 vbahelper/source/msforms/vbaspinbutton \
89 vbahelper/source/msforms/vbasystemaxcontrol \
90 vbahelper/source/msforms/vbatextbox \
91 vbahelper/source/msforms/vbatogglebutton \
92 vbahelper/source/msforms/vbauserform \
95 # vim: set noet sw=4 ts=4: