From f3b314413336eb60e66886f48b56149bb586d830 Mon Sep 17 00:00:00 2001 From: Herbert Dürr Date: Mon, 12 May 2014 13:39:08 +0000 Subject: AOO: #i124875# support Mac AV-Foundation API for multimedia content Adapted as needed and gbuildified by tml. For the files that actually are Objective-C++ use the .mm suffix. Change-Id: Ieec40b722df6463a1061d19d38154828ff8adca2 --- avmedia/Library_avmediaMacAVF.mk | 47 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 avmedia/Library_avmediaMacAVF.mk (limited to 'avmedia/Library_avmediaMacAVF.mk') diff --git a/avmedia/Library_avmediaMacAVF.mk b/avmedia/Library_avmediaMacAVF.mk new file mode 100644 index 000000000000..b123130c4d53 --- /dev/null +++ b/avmedia/Library_avmediaMacAVF.mk @@ -0,0 +1,47 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_Library_Library,avmediaMacAVF)) + +$(eval $(call gb_Library_set_componentfile,avmediaMacAVF,avmedia/source/macavf/avmediaMacAVF)) + +$(eval $(call gb_Library_set_include,avmediaMacAVF,\ + $$(INCLUDE) \ + -I$(SRCDIR)/avmedia/source/inc \ +)) + +$(eval $(call gb_Library_use_external,avmediaMacAVF,boost_headers)) + +$(eval $(call gb_Library_use_sdk_api,avmediaMacAVF)); + +$(eval $(call gb_Library_use_libraries,avmediaMacAVF,\ + comphelper \ + cppu \ + cppuhelper \ + sal \ + tl \ + vcl \ + $(gb_UWINAPI) \ +)) + +$(eval $(call gb_Library_use_system_darwin_frameworks,avmediaMacAVF,\ + AVFoundation \ + Cocoa \ + CoreMedia \ +)) + +$(eval $(call gb_Library_add_objcxxobjects,avmediaMacAVF,\ + avmedia/source/macavf/framegrabber \ + avmedia/source/macavf/macavfuno \ + avmedia/source/macavf/manager \ + avmedia/source/macavf/player \ + avmedia/source/macavf/window \ +)) + +# vim: set noet sw=4 ts=4: -- cgit