xref: /trunk/main/avmedia/Library_avmedia.mk (revision 01c0be3d87b909943c4f60cc603c1d707b7d2bad)
1#**************************************************************
2#
3#  Licensed to the Apache Software Foundation (ASF) under one
4#  or more contributor license agreements.  See the NOTICE file
5#  distributed with this work for additional information
6#  regarding copyright ownership.  The ASF licenses this file
7#  to you under the Apache License, Version 2.0 (the
8#  "License"); you may not use this file except in compliance
9#  with the License.  You may obtain a copy of the License at
10#
11#    http://www.apache.org/licenses/LICENSE-2.0
12#
13#  Unless required by applicable law or agreed to in writing,
14#  software distributed under the License is distributed on an
15#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16#  KIND, either express or implied.  See the License for the
17#  specific language governing permissions and limitations
18#  under the License.
19#
20#**************************************************************
21
22
23
24$(eval $(call gb_Library_Library,avmedia))
25
26$(eval $(call gb_Library_add_package_headers,avmedia,avmedia_inc))
27
28$(eval $(call gb_Library_set_componentfile,avmedia,avmedia/util/avmedia))
29
30$(eval $(call gb_Library_set_include,avmedia,\
31        $$(INCLUDE) \
32    -I$(SRCDIR)/avmedia/inc \
33    -I$(SRCDIR)/avmedia/source/inc \
34))
35
36$(eval $(call gb_Library_add_defs,avmedia,\
37    -DAVMEDIA_DLLIMPLEMENTATION \
38))
39
40$(eval $(call gb_Library_add_api,avmedia,\
41    offapi \
42    udkapi \
43))
44
45$(eval $(call gb_Library_add_linked_libs,avmedia,\
46    comphelper \
47    cppuhelper \
48    cppu \
49    sal \
50    sfx \
51    stl \
52    svl \
53    svt \
54    tl \
55    utl \
56    vcl \
57    vos3 \
58    $(gb_STDLIBS) \
59))
60
61$(eval $(call gb_Library_add_noexception_objects,avmedia,\
62    avmedia/source/framework/mediaitem \
63    avmedia/source/framework/mediamisc \
64    avmedia/source/framework/mediacontrol \
65    avmedia/source/framework/mediaplayer \
66    avmedia/source/viewer/mediaevent_impl \
67))
68
69$(eval $(call gb_Library_add_exception_objects,avmedia,\
70    avmedia/source/framework/mediatoolbox \
71    avmedia/source/framework/soundhandler \
72    avmedia/source/viewer/mediawindow \
73    avmedia/source/viewer/mediawindowbase_impl \
74    avmedia/source/viewer/mediawindow_impl \
75))
76
77# vim: set noet sw=4 ts=4:
78