[CMAKE]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Sat, 9 Oct 2010 16:23:07 +0000 (16:23 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Sat, 9 Oct 2010 16:23:07 +0000 (16:23 +0000)
Disable PSEH for MSVC

svn path=/branches/cmake-bringup/; revision=49076

lib/pseh/CMakeLists.txt

index 5843f6e..1e34172 100644 (file)
@@ -1,4 +1,6 @@
 
+if(NOT MSVC)
+
 list(APPEND SOURCE framebased.c)
 
 if(ARCH MATCHES i386)
@@ -15,3 +17,4 @@ endif(ARCH MATCHES i386)
 add_library(pseh ${SOURCE})
 add_dependencies(pseh psdk)
 
+endif()