[CMAKE] Do not unset this in MSVC_IDE mode. Will be removed when the upcoming RosBE...
authorAmine Khaldi <amine.khaldi@reactos.org>
Sat, 16 May 2015 13:11:43 +0000 (13:11 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Sat, 16 May 2015 13:11:43 +0000 (13:11 +0000)
svn path=/trunk/; revision=67773

reactos/CMakeLists.txt

index afcee32..eea5cb4 100644 (file)
@@ -68,8 +68,11 @@ if(MSVC_IDE)
     add_compile_flags("/MP")
 endif()
 
-# We don't need CMake importlib handling
-unset(CMAKE_IMPORT_LIBRARY_SUFFIX)
+# We don't need CMake importlib handling.
+# FIXME: Remove the MSVC_IDE condition when the upcoming RosBE lands.
+if(NOT MSVC_IDE)
+    unset(CMAKE_IMPORT_LIBRARY_SUFFIX)
+endif()
 
 if(NOT CMAKE_CROSSCOMPILING)