aboutsummaryrefslogtreecommitdiff
path: root/modules/FindStrigi.cmake
AgeCommit message (Collapse)Author
2008-09-19move STRIGI_NEEDS_SIGNED_CHAR for win32 to FindStrigi.cmake to make sure ↵Christian Ehrlicher
it's correct in all kde modules Maybe we should parse strigi-config.h to determine strigi version instead using pkgconfig? svn path=/trunk/KDE/kdelibs/; revision=862761
2008-09-15Fix min required version now that >= 0.5.9 should work again (like in 4.1 ↵David Faure
branch); output actual found version in stderr message. svn path=/trunk/KDE/kdelibs/; revision=861152
2008-09-13Make the stuff compile with strigi <= 0.6.0 too, since we can.David Faure
svn path=/trunk/KDE/kdelibs/; revision=860427
2008-09-13When strigi is >= 0.6.0, use signed char instead of char.David Faure
Strong suggestion for the future: KEEPING SOURCE COMPATIBILITY! svn path=/branches/KDE/4.1/kdelibs/; revision=860423
2008-09-03-modify the documentation, so let's see if this shows up tomorrow on api.kde.orgAlexander Neundorf
Alex CCMAIL: winter@kde.org svn path=/trunk/KDE/kdelibs/; revision=856856
2008-08-29Fix Strigi detection to use a version from the 0.5 branch and to not use a ↵Jos van den Oever
newer version. svn path=/branches/KDE/4.1/kdelibs/; revision=854554
2008-08-22Give an accurate hint - if Strigi can't be found, CMAKE_PREFIX_PATH, not ↵Alex Merry
CMAKE_FIND_PREFIX_PATH, should be set for CMake 2.6 svn path=/trunk/KDE/kdelibs/; revision=850927
2008-08-20Require at least Strigi 0.6.0 (SVN trunk) because a BC change was needed in ↵Jos van den Oever
libstreamanalyzer to support ARM architecture. svn path=/trunk/KDE/kdelibs/; revision=850153
2008-05-14We need at least version 0.5.9 because of some serious bug fixes.Jos van den Oever
svn path=/trunk/KDE/kdelibs/; revision=807822
2008-04-16don't put set variables into the CACHE, per Brad KingAllen Winter
svn path=/trunk/KDE/kdelibs/; revision=797757
2008-03-13split into strigila and strigita prefixDirk Mueller
svn path=/trunk/KDE/kdelibs/; revision=785375
2008-03-13configure the strigi analyzer prefix in a central place instead of ↵Dirk Mueller
spreading it all over KDE svn path=/trunk/KDE/kdelibs/; revision=785225
2008-01-11- libstreams is not enough, streamanalyzer is also needed (those two are ↵Josef Spillner
separate packages sometimes) svn path=/trunk/KDE/kdelibs/; revision=760011
2007-12-17-mark more variables as advancedAlexander Neundorf
-some cosmetics (indentation etc.) Alex svn path=/trunk/KDE/kdelibs/; revision=749753
2007-11-24It is really a bad idea to search for stuff _only_ using NO_DEFAULT_PATH.Alexander Neundorf
In the case that what you are looking for is somewhere else then cmake has no way to find it. For custom install locations cmake provides the environment variables CMAKE_LIBRARY_PATH and FIND_INCLUDE_PATH. So if you have your own set of install locations, set these two environment variables accordingly. cmake cvs additionally offers CMAKE_FIND_PREFIX_PATH, which is used by all FIND_PATH/FILE/LIBRARY/PROGRAM() calls with the appropriate subdir appended. I.e. if you install everything to ~/mystuff/, do export CMAKE_FIND_PREFIX_PATH=$HOME/mystuff, cmake will append the include/, lib/ and bin/ subdirectories automatically. Adding CMAKE_INSTALL_DIR/<suffix> is not necessary, this is done by default in FindKDE4Internal.cmake (and in cmake > 2.4.7). So now at first the FIND_XXX() calls are used with NO_DEFAULT_PATH, so no change here for UNIX, and after that the FIND_XXX() calls are used without NO_DEFAULT_PATH for the case that the first one didn't succeed (so no change for Windows). This has the nice effect that the cmake-provided means to specify custom search locations work again. Alex CCMAIL: ch.ehrlicher@gmx.de CCMAIL: kretz@kde.org svn path=/trunk/KDE/kdelibs/; revision=741164
2007-10-11cmake's string handling is suboptimal... :(Christian Ehrlicher
svn path=/trunk/KDE/kdelibs/; revision=724235
2007-10-11I'm sorry Ralf, but your fix was wrong and breaks build. The error is in ↵Christian Ehrlicher
FindStrigi.cmake which adds paths without converting them to cmake (==unix) style svn path=/trunk/KDE/kdelibs/; revision=724221
2007-10-07NO_DEFAULT_PATH is not good on win32 - remove it for windowsChristian Ehrlicher
svn path=/trunk/KDE/kdelibs/; revision=722518
2007-10-05-make it possible for the module user to override the required strigi versionAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=721587
2007-10-03we need Strigi 0.5.5 nowDirk Mueller
svn path=/trunk/KDE/kdelibs/; revision=720685
2007-10-02Find libraries in $STRIGI_HOME instead of system ones, as discussed with Vir ↵Anders Lund
on irc svn path=/trunk/KDE/kdelibs/; revision=720053
2007-09-30FIND_LIBRARY_EX -> FIND_LIBRARY_WITH_DEBUGChristian Ehrlicher
svn path=/trunk/KDE/kdelibs/; revision=719224
2007-09-30don't prefer /usr/include over /includeMatthias Kretz
svn path=/trunk/KDE/kdelibs/; revision=719138
2007-09-25Add search strigiqtdbusclientLaurent Montel
necessary for new kick-off svn path=/trunk/KDE/kdelibs/; revision=716763
2007-09-24switch to new macro FIND_LIBRARY_EX() to avoid code duplicationChristian Ehrlicher
svn path=/trunk/KDE/kdelibs/; revision=716254
2007-09-15Fix find for msvc.Adrian Page
svn path=/trunk/KDE/kdelibs/; revision=712967
2007-09-15adopt them to the new win32 library namesChristian Ehrlicher
svn path=/trunk/KDE/kdelibs/; revision=712919
2007-08-20If Strigi is found via pkg-config but not found in the normal installation ↵Adriaan de Groot
paths, (double) check in the directories returned by pkg-config. Handles the case where Strigi is installed in a different prefix from KDE. svn path=/trunk/KDE/kdelibs/; revision=702314
2007-08-20Use FIND_PACKAGE_HANDLE_STANDARD_ARGSLaurent Montel
Fix typo svn path=/trunk/KDE/kdelibs/; revision=702150
2007-08-03don't use $ENV{foo} in MESSAGE(), can mess up parsing under windowsAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=696118
2007-08-03-add FindPackageHandleStandardArgs.cmake from cmake cvs, which adds a macro ↵Alexander Neundorf
for handling the QUIETLY and REQUIRED arguments for FIND_PACKAGE() and which sets the foo_FOUND variable if all additional variables are TRUE -use this new macro in FindStrigi. -put the successful query of pkgfconfig for the strigi version in the cache, so it doesn't have to do it again the next time -if pkgconfig doesn't find strigi at all, print a warning message but don't fail Alex svn path=/trunk/KDE/kdelibs/; revision=695818
2007-08-02* Improve the error message when the strigi pkgconfig test failsRichard Dale
svn path=/trunk/KDE/kdelibs/; revision=695716
2007-07-29Give extra hints on failure to find StrigiWill Stephenson
svn path=/trunk/KDE/kdelibs/; revision=693961
2007-07-26give a hintDirk Mueller
svn path=/trunk/KDE/kdelibs/; revision=692881
2007-07-26replace the incorrect message about "recent strigi" with 0.5.3. Dirk Mueller
svn path=/trunk/KDE/kdelibs/; revision=692857
2007-07-13kde variable is not defined at the begining into kdelibsLaurent Montel
and if we search directly into include_install_dir Remove old compatibility variable svn path=/trunk/KDE/kdelibs/; revision=687269
2007-04-05Use cmake kde4 variableLaurent Montel
svn path=/trunk/KDE/kdelibs/; revision=650721
2007-03-15Better cmake message which tells the use to use a recent SVN version. Keep ↵Jos van den Oever
this message until the api stabilizes (halfway april). svn path=/trunk/KDE/kdelibs/; revision=642883
2007-03-15cmake variables should all be prefixed, so use STRIGI_ for all variables in ↵Dominik Haumann
FindStrigi.cmake CCMAIL: Jos van den Oever <jos@vandenoever.info> Alex@dhs box svn path=/trunk/KDE/kdelibs/; revision=642853
2007-03-15Follow refactory in strigi. (2+3/3)Thomas Zander
* Renamed library * (mostly) Renamed namespace from 'jstreams' to 'Strigi' svn path=/trunk/KDE/kdelibs/; revision=642663
2007-03-14need both strigi libs on win32Christian Ehrlicher
FIXME: don't search for libs when they're already in the cache svn path=/trunk/KDE/kdelibs/; revision=642355
2007-03-12strigi now compiles fine on win32. Will provide a binary package in the next ↵Christian Ehrlicher
few days CCMAIL kde-windows@kde.org svn path=/trunk/KDE/kdelibs/; revision=641914
2007-03-05Somehow FindStrigi.cmake did not get committed before, here it is.Jos van den Oever
svn path=/trunk/KDE/kdelibs/; revision=639518