From 4930c4905ed18f28f90ee547a6dd215b6071f649 Mon Sep 17 00:00:00 2001 From: Xavier Valls Date: Fri, 19 Aug 2016 15:36:14 +0200 Subject: [PATCH] Fix leading whitespace CMake error. CMake versions 2.4 and below silently removed leading and trailing whitespace from libraries linked with code. This was raising an error for newer CMake versions, according to new CMake policy CMP004 --- core/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index ba78f7a5500e7..6aee55dea1cdc 100644 --- a/core/CMakeLists.txt +++ b/core/CMakeLists.txt @@ -92,7 +92,7 @@ elseif(cocoa) endif() if(APPLE) - set(corelinklibs "${corelinklibs} -F /System/Library/PrivateFrameworks -framework CoreSymbolication") + set(corelinklibs "${corelinklibs}-F /System/Library/PrivateFrameworks -framework CoreSymbolication") endif(APPLE) add_subdirectory(utils)