Author: akhaldi
Date: Sat May 16 13:11:43 2015
New Revision: 67773
URL:
http://svn.reactos.org/svn/reactos?rev=67773&view=rev
Log:
[CMAKE] Do not unset this in MSVC_IDE mode. Will be removed when the upcoming RosBE lands
as there seems to be a bug in the current CMake version.
Modified:
trunk/reactos/CMakeLists.txt
Modified: trunk/reactos/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/CMakeLists.txt?rev=67773&a…
==============================================================================
--- trunk/reactos/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/CMakeLists.txt [iso-8859-1] Sat May 16 13:11:43 2015
@@ -68,8 +68,11 @@
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)