summaryrefslogtreecommitdiff
path: root/PluginRoutingInterfaceAsync
diff options
context:
space:
mode:
authorchristian linke <christian.linke@bmw.de>2013-01-11 13:09:26 +0100
committerchristian linke <christian.linke@bmw.de>2013-01-11 13:09:26 +0100
commit0269a33680a25e5d682761e8af434611cb28d00c (patch)
tree75d9373329f35502ac2272b6d5d37d1aea1f392b /PluginRoutingInterfaceAsync
parent1c3e5d99546d0c2d803d50411168d0d887365399 (diff)
downloadaudiomanager-0269a33680a25e5d682761e8af434611cb28d00c.tar.gz
* add support to switch dedicated plugins off, fix databasehandler regarding getSourceInfo and getSinkInfo, add and fix tests for database
Signed-off-by: christian linke <christian.linke@bmw.de>
Diffstat (limited to 'PluginRoutingInterfaceAsync')
-rw-r--r--PluginRoutingInterfaceAsync/CMakeLists.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/PluginRoutingInterfaceAsync/CMakeLists.txt b/PluginRoutingInterfaceAsync/CMakeLists.txt
index e3e52f7..b4cd576 100644
--- a/PluginRoutingInterfaceAsync/CMakeLists.txt
+++ b/PluginRoutingInterfaceAsync/CMakeLists.txt
@@ -17,6 +17,11 @@ cmake_minimum_required(VERSION 2.6)
PROJECT(PluginRoutingInterfaceAsync)
+OPTION (WITH_ROUTING_INTERFACE_ASYNC
+ "build with routing interface async plugin" ON)
+
+IF (WITH_ROUTING_INTERFACE_ASYNC)
+
set(LIBRARY_OUTPUT_PATH ${PLUGINS_OUTPUT_PATH}/routing)
set(DOC_OUTPUT_PATH ${DOC_OUTPUT_PATH}/RoutingAsync)
set(INCLUDE_FOLDER "include")
@@ -78,4 +83,4 @@ INSTALL(TARGETS PluginRoutingInterfaceAsync
SET(ADD_DEPEND "audiomanager-bin" "dlt" "libdbus-1-3(>=1.2.16)" "libpthread-stubs0")
set_property(GLOBAL APPEND PROPERTY sampleplugins_prop "${ADD_DEPEND}")
-
+ENDIF (WITH_ROUTING_INTERFACE_ASYNC)