Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
<https://cmake.org/cmake/help/v3.0/policy/CMP0004.html>
  • Loading branch information
xvallspl committed Aug 19, 2016
commit 4930c4905ed18f28f90ee547a6dd215b6071f649
2 changes: 1 addition & 1 deletion core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down