From 6d962ddf28ee7dff6cfe83258f7d6d09c0b3caf2 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Wed, 15 Jun 2011 22:07:14 +0000 Subject: [PATCH] [MSVC] Don't compile wine direct x dlls on MSVC for now svn path=/trunk/; revision=52260 --- reactos/dll/directx/wine/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/dll/directx/wine/CMakeLists.txt b/reactos/dll/directx/wine/CMakeLists.txt index be9f27b8150..59580031371 100644 --- a/reactos/dll/directx/wine/CMakeLists.txt +++ b/reactos/dll/directx/wine/CMakeLists.txt @@ -1,4 +1,5 @@ +if(NOT MSVC) add_subdirectory(d3d8) add_subdirectory(d3d9) add_subdirectory(d3dx9_24) @@ -22,3 +23,4 @@ add_subdirectory(d3dx9_41) add_subdirectory(d3dx9_42) add_subdirectory(ddraw) add_subdirectory(wined3d) +endif()