From: Timo Kreuzer Date: Sat, 29 Jan 2011 14:08:44 +0000 (+0000) Subject: [CMAKE] X-Git-Tag: backups/ros-branch-0_3_13@51035~73 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=2d462cd8b1b544a48b51074d716d0612ec557f17 [CMAKE] Don't compile w32kdll and w32knapi test on MSVC svn path=/trunk/; revision=50553 --- 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)