xref: /trunk/main/avmedia/Library_avmedia.mk (revision c373d468)
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
45ifeq ($(OS),MACOSX)
46$(eval $(call gb_Library_add_cxxflags,avmedia,\
47    -x objective-c++ \
48))
49endif
50
51$(eval $(call gb_Library_add_linked_libs,avmedia,\
52	comphelper \
53	cppuhelper \
54	cppu \
55	sal \
56	sfx \
57	stl \
58	svl \
59	svt \
60	tl \
61	utl \
62	vcl \
63	vos3 \
64	$(gb_STDLIBS) \
65))
66
67$(eval $(call gb_Library_add_noexception_objects,avmedia,\
68	avmedia/source/framework/mediaitem \
69	avmedia/source/framework/mediamisc \
70	avmedia/source/framework/mediacontrol \
71	avmedia/source/framework/mediaplayer \
72	avmedia/source/viewer/mediaevent_impl \
73))
74
75$(eval $(call gb_Library_add_exception_objects,avmedia,\
76	avmedia/source/framework/mediatoolbox \
77	avmedia/source/framework/soundhandler \
78	avmedia/source/viewer/mediawindow \
79	avmedia/source/viewer/mediawindowbase_impl \
80	avmedia/source/viewer/mediawindow_impl \
81))
82
83# vim: set noet sw=4 ts=4:
84