summaryrefslogtreecommitdiffstats
path: root/extra/nanopb-config-version.cmake.in
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@github.mail.kapsi.fi>2016-10-10 07:25:35 +0300
committerGitHub <noreply@github.com>2016-10-10 07:25:35 +0300
commitfe0aca04cbc41327144813ca54ea37aafb866d25 (patch)
tree1eba7ff46e34f155f8491514beeb99e2709d7aa6 /extra/nanopb-config-version.cmake.in
parent060e6a6cc21eaf555cba6d3ee2558527e6790a5f (diff)
parent6e47677acf98934b76fb5f6337867b276ce7bce8 (diff)
Merge pull request #208 from podsvirov/topic-cmake-project
Added CMake project
Diffstat (limited to 'extra/nanopb-config-version.cmake.in')
-rw-r--r--extra/nanopb-config-version.cmake.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/extra/nanopb-config-version.cmake.in b/extra/nanopb-config-version.cmake.in
new file mode 100644
index 00000000..f9292a83
--- /dev/null
+++ b/extra/nanopb-config-version.cmake.in
@@ -0,0 +1,11 @@
+set(PACKAGE_VERSION "@nanopb_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()