From 92a2b84a97a9852d9749608f5653472d273dd1aa Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Fri, 17 Jun 2011 14:13:30 +0000 Subject: [PATCH] [PSEH2_TEST] Don't compile pseh2 test with MSVC svn path=/trunk/; revision=52316 --- rostests/tests/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rostests/tests/CMakeLists.txt b/rostests/tests/CMakeLists.txt index 6b2fdd7d7a3..93b5020f9a3 100644 --- a/rostests/tests/CMakeLists.txt +++ b/rostests/tests/CMakeLists.txt @@ -1,2 +1,4 @@ add_subdirectory(mmixer_test) -add_subdirectory(pseh2) +if (NOT MSVC) + add_subdirectory(pseh2) +endif()