aboutsummaryrefslogtreecommitdiff
path: root/modules/FindSoprano.cmake
diff options
context:
space:
mode:
authorDavid Faure <faure@kde.org>2010-11-15 22:43:44 +0000
committerDavid Faure <faure@kde.org>2010-11-15 22:43:44 +0000
commit9fbdf0074b89a6f0e93b79e7e5ba1648365c97e3 (patch)
treedba19e45381179ce8bd146a0656fafcdf0206893 /modules/FindSoprano.cmake
parent04c6f67b0ebd9490fec82e330a704a616c28e536 (diff)
downloadextra-cmake-modules-9fbdf0074b89a6f0e93b79e7e5ba1648365c97e3.tar.gz
extra-cmake-modules-9fbdf0074b89a6f0e93b79e7e5ba1648365c97e3.tar.bz2
Apply patch by Romain Perier: make the check for the min soprano version actually work.
CCMAIL: kde-buildsystem@kde.org, romain.perier@gmail.com, sebastian@trueg.de svn path=/trunk/KDE/kdelibs/; revision=1197457
Diffstat (limited to 'modules/FindSoprano.cmake')
-rw-r--r--modules/FindSoprano.cmake7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/FindSoprano.cmake b/modules/FindSoprano.cmake
index e9d8ce36..77ddfe95 100644
--- a/modules/FindSoprano.cmake
+++ b/modules/FindSoprano.cmake
@@ -209,9 +209,10 @@ if(SOPRANO_INCLUDE_DIR)
endif(SOPRANO_INCLUDE_DIR)
include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(Soprano DEFAULT_MSG
- SOPRANO_INCLUDE_DIR SOPRANO_LIBRARIES
- ${_SOPRANO_REQUIRED_COMPONENTS_RESULTS} )
+
+find_package_handle_standard_args(Soprano REQUIRED_VARS SOPRANO_INCLUDE_DIR SOPRANO_LIBRARIES
+ _SOPRANO_REQUIRED_COMPONENTS_RESULTS
+ VERSION_VAR SOPRANO_VERSION)
# for compatibility:
set(Soprano_FOUND ${SOPRANO_FOUND})