diff options
author | Laurent Montel <montel@kde.org> | 2009-02-28 12:19:41 +0000 |
---|---|---|
committer | Laurent Montel <montel@kde.org> | 2009-02-28 12:19:41 +0000 |
commit | b32cde33229975966e54e31f19b90629056c9fb5 (patch) | |
tree | d321628b011eec0ac09241164797df747ddf2180 | |
parent | 105205cfa600256f4a57f9f6e4c9e5fc7e12a3c8 (diff) | |
download | extra-cmake-modules-b32cde33229975966e54e31f19b90629056c9fb5.tar.gz extra-cmake-modules-b32cde33229975966e54e31f19b90629056c9fb5.tar.bz2 |
Add SOPRANO_PLUGIN_VIRTUOSOBACKEND_FOUND
svn path=/trunk/KDE/kdelibs/; revision=933219
-rw-r--r-- | modules/FindSoprano.cmake | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/FindSoprano.cmake b/modules/FindSoprano.cmake index fc00a9c9..ad608962 100644 --- a/modules/FindSoprano.cmake +++ b/modules/FindSoprano.cmake @@ -16,6 +16,7 @@ # SOPRANO_PLUGIN_RAPTORSERIALIZER_FOUND - true if the raptorserializer plugin is found # SOPRANO_PLUGIN_REDLANDBACKEND_FOUND - true if the redlandbackend plugin is found # SOPRANO_PLUGIN_SESAME2BACKEND_FOUND - true if the sesame2backend plugin is found +# SOPRANO_PLUGIN_VIRTUOSOBACKEND_FOUND - true if the virtuosobackend plugin is found # # Options: # Set SOPRANO_MIN_VERSION to set the minimum required Soprano version (default: 1.99) @@ -164,6 +165,11 @@ set(_plugins "${_plugins} sesame2backend") endif(EXISTS ${SOPRANO_PLUGIN_DIR}/sesame2backend.desktop) + if(EXISTS ${SOPRANO_PLUGIN_DIR}/virtuosobackend.desktop) + set(SOPRANO_PLUGIN_VIRTUOSOBACKEND_FOUND TRUE) + set(_plugins "${_plugins} virtuosobackend") + endif(EXISTS ${SOPRANO_PLUGIN_DIR}/virtuosobackend.desktop) + endif(Soprano_FOUND) if(Soprano_FOUND) |