summaryrefslogtreecommitdiff
path: root/cmakeconfig
diff options
context:
space:
mode:
authorRyuan Choi <ryuan.choi@gmail.com>2013-04-03 14:37:02 +0100
committerTom Hacohen <tom@stosb.com>2013-04-03 14:37:02 +0100
commit114b2adc596a5c22dd2cfe124726e807ae09e16e (patch)
tree652934e7a4ef049fb616b73586602da4317cd5d0 /cmakeconfig
parent13e2792bf8c7599a9cfd0309d992ed2264d5aad9 (diff)
downloadelementary-114b2adc596a5c22dd2cfe124726e807ae09e16e.tar.gz
Added ElementaryConfigVersion.cmake.in
Diffstat (limited to 'cmakeconfig')
-rw-r--r--cmakeconfig/ElementaryConfigVersion.cmake.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/cmakeconfig/ElementaryConfigVersion.cmake.in b/cmakeconfig/ElementaryConfigVersion.cmake.in
new file mode 100644
index 000000000..f99fba11a
--- /dev/null
+++ b/cmakeconfig/ElementaryConfigVersion.cmake.in
@@ -0,0 +1,11 @@
+set(PACKAGE_VERSION "@VERSION@")
+
+# Check whether the requested PACKAGE_FIND_VERSION is compatible
+if ("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}")
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
+else ()
+ set(PACKAGE_VERSION_COMPATIBLE TRUE)
+ if ("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}")
+ set(PACKAGE_VERSION_EXACT TRUE)
+ endif ()
+endif ()