diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-04-30 14:57:32 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-04-30 14:57:32 (GMT) |
commit | 6e2cd411383aa9a84b9a6f3d9db5e9ffc3d057c0 (patch) | |
tree | 7146bf8f7d2f01a8f0de2c815eaa04fd68847977 | |
parent | f14993a78e85b5400edf19d6573e0e75f482e5ad (diff) | |
download | CMake-6e2cd411383aa9a84b9a6f3d9db5e9ffc3d057c0.zip CMake-6e2cd411383aa9a84b9a6f3d9db5e9ffc3d057c0.tar.gz CMake-6e2cd411383aa9a84b9a6f3d9db5e9ffc3d057c0.tar.bz2 |
BUG: if /opt/lib and /opt/csw/lib are searched for libs, then /opt/include
and /opt/csw/include should also be searched for headers (according to
google they also exist)
Alex
-rw-r--r-- | Modules/Platform/UnixPaths.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/Platform/UnixPaths.cmake b/Modules/Platform/UnixPaths.cmake index b6232e9..d710efc 100644 --- a/Modules/Platform/UnixPaths.cmake +++ b/Modules/Platform/UnixPaths.cmake @@ -10,6 +10,7 @@ SET(CMAKE_SYSTEM_INCLUDE_PATH ${CMAKE_SYSTEM_INCLUDE_PATH} # Other /opt/local/include /usr/pkg/include + /opt/csw/include /opt/include ) SET(CMAKE_SYSTEM_LIBRARY_PATH ${CMAKE_SYSTEM_LIBRARY_PATH} |