From 95386672a2406e8878d4cad5ce48203d68b374c4 Mon Sep 17 00:00:00 2001 From: christian mueller Date: Fri, 27 Apr 2012 14:51:38 +0200 Subject: * [GAM-69] AudioManager tests does not compile without dlt installed (WITH_DLT=OFF) fixed Signed-off-by: christian mueller --- PluginControlInterface/test/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'PluginControlInterface/test') diff --git a/PluginControlInterface/test/CMakeLists.txt b/PluginControlInterface/test/CMakeLists.txt index 8b5fb88..70a9339 100644 --- a/PluginControlInterface/test/CMakeLists.txt +++ b/PluginControlInterface/test/CMakeLists.txt @@ -23,7 +23,9 @@ FIND_PACKAGE(GTest REQUIRED) find_package (Threads) FIND_PACKAGE(PkgConfig) -pkg_check_modules(DLT REQUIRED automotive-dlt) +IF(WITH_DLT) + pkg_check_modules(DLT REQUIRED automotive-dlt>=2.2.0) +ENDIF(WITH_DLT) INCLUDE_DIRECTORIES( ${STD_INCLUDE_DIRS} -- cgit v1.2.1