diff options
author | Maciej Mrozowski <reavertm@gmail.com> | 2009-12-28 17:49:37 +0000 |
---|---|---|
committer | Maciej Mrozowski <reavertm@gmail.com> | 2009-12-28 17:49:37 +0000 |
commit | b83d8f9ce2caf2cef06139e698d2490dc9d36519 (patch) | |
tree | 66e8f39416be9390a252ba7c281677bb869cfa58 | |
parent | ad92bad30f078347776aabe9378c9069e64424a1 (diff) | |
download | extra-cmake-modules-b83d8f9ce2caf2cef06139e698d2490dc9d36519.tar.gz extra-cmake-modules-b83d8f9ce2caf2cef06139e698d2490dc9d36519.tar.bz2 |
Make Soprano dependency check nonfatal and thus Nepomuk libs optional.
Also updated Soprano URL in FindNepomuk.cmake.
To build Nepomuk libs one still needs Soprano >= 2.3.70 with raptor parser and redland storage as well as SDO >= 0.2.
CCMAIL: kde-buildsystem@kde.org
svn path=/trunk/KDE/kdelibs/; revision=1067012
-rw-r--r-- | modules/FindNepomuk.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/FindNepomuk.cmake b/modules/FindNepomuk.cmake index c4768002..fc4a610b 100644 --- a/modules/FindNepomuk.cmake +++ b/modules/FindNepomuk.cmake @@ -19,7 +19,7 @@ if (NOT DEFINED Soprano_FOUND) find_package(Soprano) include(MacroLogFeature) - macro_log_feature(Soprano_FOUND "Soprano" "Semantic Desktop Storing" "" FALSE "" "Soprano is needed for Nepomuk") + macro_log_feature(Soprano_FOUND "Soprano" "Semantic Desktop Storing" "http://soprano.sourceforge.net/" FALSE "" "Soprano is needed for Nepomuk") endif (NOT DEFINED Soprano_FOUND) if (NOT DEFINED SHAREDDESKTOPONTOLOGIES_FOUND) @@ -64,9 +64,9 @@ include("${NEPOMUK_ADDONTOLOGYCLASSES_FILE}" OPTIONAL) mark_as_advanced(NEPOMUK_INCLUDE_DIR NEPOMUK_LIBRARIES NEPOMUK_QUERY_LIBRARIES NEPOMUK_ADDONTOLOGIES_FILE) include(FindPackageHandleStandardArgs) -# List all nepomuk and also all necessary soprano variables here, to make it +# List all nepomuk and also all necessary soprano variables here, to make it # easier for the user to see what was missing: -find_package_handle_standard_args(Nepomuk DEFAULT_MSG +find_package_handle_standard_args(Nepomuk DEFAULT_MSG NEPOMUK_LIBRARIES NEPOMUK_INCLUDE_DIR NEPOMUK_ADDONTOLOGYCLASSES_FILE Soprano_FOUND SOPRANO_PLUGIN_RAPTORPARSER_FOUND SOPRANO_PLUGIN_REDLANDBACKEND_FOUND SHAREDDESKTOPONTOLOGIES_FOUND |