From 05a5f2bb8940f0922c3d896bb10726a9d9f5e840 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Tue, 12 May 2015 12:19:41 +0000 Subject: [PATCH] [CMAKE] Prevent CMake from doing importlib handling as we do that on our own. svn path=/trunk/; revision=67690 --- reactos/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reactos/CMakeLists.txt b/reactos/CMakeLists.txt index 030f7d6207e..e1e45ea795b 100644 --- a/reactos/CMakeLists.txt +++ b/reactos/CMakeLists.txt @@ -68,6 +68,9 @@ if(MSVC_IDE) add_compile_flags("/MP") endif() +# We don't need CMake importlib handling +unset(CMAKE_IMPORT_LIBRARY_SUFFIX) + if(NOT CMAKE_CROSSCOMPILING) add_definitions(-DTARGET_${ARCH})