From a7fea1598bc2e2bf625c7fe1f1c1616452d7c5fd Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Sat, 16 May 2015 13:11:43 +0000 Subject: [PATCH] [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. svn path=/trunk/; revision=67773 --- reactos/CMakeLists.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/reactos/CMakeLists.txt b/reactos/CMakeLists.txt index afcee321c54..eea5cb4570a 100644 --- a/reactos/CMakeLists.txt +++ b/reactos/CMakeLists.txt @@ -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)