From 2d462cd8b1b544a48b51074d716d0612ec557f17 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sat, 29 Jan 2011 14:08:44 +0000 Subject: [PATCH] [CMAKE] Don't compile w32kdll and w32knapi test on MSVC svn path=/trunk/; revision=50553 --- rostests/apitests/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rostests/apitests/CMakeLists.txt b/rostests/apitests/CMakeLists.txt index adbfb6482ff..4ac4b3027d2 100644 --- a/rostests/apitests/CMakeLists.txt +++ b/rostests/apitests/CMakeLists.txt @@ -6,9 +6,11 @@ add_subdirectory(gdi32) add_subdirectory(ntdll) add_subdirectory(user32) +if(NOT MSVC) if(ARCH MATCHES i386) add_subdirectory(w32kdll) add_subdirectory(w32knapi) endif() +endif() add_subdirectory(ws2_32)