aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Kiagiadakis <kiagiadakis.george@gmail.com>2009-11-30 12:18:45 +0000
committerGeorge Kiagiadakis <kiagiadakis.george@gmail.com>2009-11-30 12:18:45 +0000
commitbc0afe6c35476c3a7f68ed05d6811cc45b2db9e0 (patch)
tree6a1b986e009f93267cc0cf0725218e27a63d43e0
parentf9eb85764ac652b8afba04e363c67128a861a7e4 (diff)
downloadextra-cmake-modules-bc0afe6c35476c3a7f68ed05d6811cc45b2db9e0.tar.gz
extra-cmake-modules-bc0afe6c35476c3a7f68ed05d6811cc45b2db9e0.tar.bz2
Make soprano and sdo optional in FindNepomuk.cmake.
If nepomuk is optional, they should not be marked as required. svn path=/trunk/KDE/kdelibs/; revision=1056584
-rw-r--r--modules/FindNepomuk.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/FindNepomuk.cmake b/modules/FindNepomuk.cmake
index 8ca6e4f2..35b7c4de 100644
--- a/modules/FindNepomuk.cmake
+++ b/modules/FindNepomuk.cmake
@@ -19,13 +19,13 @@
if (NOT DEFINED Soprano_FOUND)
find_package(Soprano)
include(MacroLogFeature)
- macro_log_feature(Soprano_FOUND "Soprano" "Semantic Desktop Storing" "" TRUE "" "Soprano is needed for Nepomuk")
+ macro_log_feature(Soprano_FOUND "Soprano" "Semantic Desktop Storing" "" FALSE "" "Soprano is needed for Nepomuk")
endif (NOT DEFINED Soprano_FOUND)
if (NOT DEFINED SHAREDDESKTOPONTOLOGIES_FOUND)
find_package(SharedDesktopOntologies)
include(MacroLogFeature)
- macro_log_feature(SHAREDDESKTOPONTOLOGIES_FOUND "Shared desktop ontologies" "Desktop ontologies" "http://oscaf.sourceforge.net" TRUE "" "Ontologies necessary for the Nepomuk semantic desktop.")
+ macro_log_feature(SHAREDDESKTOPONTOLOGIES_FOUND "Shared desktop ontologies" "Desktop ontologies" "http://oscaf.sourceforge.net" FALSE "" "Ontologies necessary for the Nepomuk semantic desktop.")
endif (NOT DEFINED SHAREDDESKTOPONTOLOGIES_FOUND)
# Check for the following stuff independent from whether soprano has been found