summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AudioManagerUtilities/test/CMakeLists.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/AudioManagerUtilities/test/CMakeLists.txt b/AudioManagerUtilities/test/CMakeLists.txt
index 414e199..74e56f9 100644
--- a/AudioManagerUtilities/test/CMakeLists.txt
+++ b/AudioManagerUtilities/test/CMakeLists.txt
@@ -1,2 +1,8 @@
-add_subdirectory (AmSocketHandlerTest)
+if (WITH_DLT)
+ # this test works only if Utilities are built with DLT support - skip otherwise
+ add_subdirectory (AmSocketHandlerTest)
+else (WITH_DLT)
+ message ( WARNING "CAmSocketHandlerTest requires DLT support - skipping ...")
+endif (WITH_DLT)
+
add_subdirectory (AmSerializerTest)