1
0
Fork 0

Remove some CMake search paths

As the comments says, none of these should be needed, or
they are added by CMake automatically.
This commit is contained in:
James Turner 2014-02-14 20:45:03 +00:00
parent 9d995907db
commit 1c286e4932

View file

@ -73,12 +73,6 @@ endif()
# Configure library search paths
#####################################################################################
if(APPLE)
# Custom library directories for Mac, which should have precedence over any other
list(APPEND ADDITIONAL_LIBRARY_PATHS
~/Library/Frameworks
/Library/Frameworks)
endif(APPLE)
if(NOT "${CMAKE_LIBRARY_ARCHITECTURE}" STREQUAL "")
# Workaround for Ubuntu/Debian which introduced the "multiarch" library
@ -93,13 +87,6 @@ if(NOT "${CMAKE_LIBRARY_ARCHITECTURE}" STREQUAL "")
message(STATUS "additional library directories: ${ADDITIONAL_LIBRARY_PATHS}")
endif()
if(NOT MSVC)
# TBD: are these really necessary? Aren't they considered by cmake automatically?
list(APPEND ADDITIONAL_LIBRARY_PATHS
/opt/local
/usr/local
/usr)
endif()
#####################################################################################
IF(APPLE)