diff options
author | Alex Merry <kde@randomguy3.me.uk> | 2008-08-22 15:00:50 +0000 |
---|---|---|
committer | Alex Merry <kde@randomguy3.me.uk> | 2008-08-22 15:00:50 +0000 |
commit | 9beb25385bf8600c71db7afd793890a45ac11fa7 (patch) | |
tree | 40ff521661a205937ec4ab754271b70336921330 | |
parent | 87299c07951d5b28767ee8949e40ff1942307bde (diff) | |
download | extra-cmake-modules-9beb25385bf8600c71db7afd793890a45ac11fa7.tar.gz extra-cmake-modules-9beb25385bf8600c71db7afd793890a45ac11fa7.tar.bz2 |
Give an accurate hint - if Strigi can't be found, CMAKE_PREFIX_PATH, not CMAKE_FIND_PREFIX_PATH, should be set for CMake 2.6
svn path=/trunk/KDE/kdelibs/; revision=850927
-rw-r--r-- | modules/FindStrigi.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindStrigi.cmake b/modules/FindStrigi.cmake index 8fc521c7..c9c5b671 100644 --- a/modules/FindStrigi.cmake +++ b/modules/FindStrigi.cmake @@ -117,7 +117,7 @@ endif (NOT WIN32 AND NOT HAVE_STRIGI_VERSION) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(Strigi - "Couldn't find Strigi streams and streamanalyzer libraries. Set the environment variable STRIGI_HOME (or CMAKE_FIND_PREFIX_PATH if using CMake >=2.5) to the strigi install dir." + "Couldn't find Strigi streams and streamanalyzer libraries. Set the environment variable STRIGI_HOME (or CMAKE_PREFIX_PATH if using CMake >=2.6) to the strigi install dir." STRIGI_STREAMS_LIBRARY STRIGI_STREAMANALYZER_LIBRARY STRIGI_INCLUDE_DIR) if(WIN32) |