Author: tkreuzer Date: Sat Jan 29 14:08:44 2011 New Revision: 50553
URL: http://svn.reactos.org/svn/reactos?rev=50553&view=rev Log: [CMAKE] Don't compile w32kdll and w32knapi test on MSVC
Modified: trunk/rostests/apitests/CMakeLists.txt
Modified: trunk/rostests/apitests/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/rostests/apitests/CMakeLists.txt?re... ============================================================================== --- trunk/rostests/apitests/CMakeLists.txt [iso-8859-1] (original) +++ trunk/rostests/apitests/CMakeLists.txt [iso-8859-1] Sat Jan 29 14:08:44 2011 @@ -6,9 +6,11 @@ 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)