aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2023-02-07 19:44:52 -0400
committerGarrett D'Amore <garrett@damore.org>2023-02-07 19:44:52 -0400
commit481436f374732f04cc328ecb9d07bc9d9d324043 (patch)
tree98db122f1f4bd91f0fc680f7c60459ac30c625a8
parentdcb892454b8aad47c967a2e5bda7d29fef189cd7 (diff)
downloadnng-481436f374732f04cc328ecb9d07bc9d9d324043.tar.gz
nng-481436f374732f04cc328ecb9d07bc9d9d324043.tar.bz2
nng-481436f374732f04cc328ecb9d07bc9d9d324043.zip
Fix version used in CMakefiles.
-rw-r--r--cmake/nng-config.cmake.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/cmake/nng-config.cmake.in b/cmake/nng-config.cmake.in
index c5419961..3f155e5a 100644
--- a/cmake/nng-config.cmake.in
+++ b/cmake/nng-config.cmake.in
@@ -1,4 +1,4 @@
-# Copyright 2021 Staysail Systems, Inc. <info@staysail.tech>
+# Copyright 2023 Staysail Systems, Inc. <info@staysail.tech>
#
# This software is supplied under the terms of the MIT License, a
# copy of which should be located in the distribution where this
@@ -8,9 +8,9 @@
@PACKAGE_INIT@
-set(NNG_VERSION_MAJOR "@NNG_MAJOR_VERSION@")
-set(NNG_VERSION_MINOR "@NNG_MINOR_VERSION@")
-set(NNG_VERSION_PATCH "@NNG_PATCH_VERSION@")
+set(NNG_MAJOR_VERSION "@NNG_MAJOR_VERSION@")
+set(NNG_MINOR_VERSION "@NNG_MINOR_VERSION@")
+set(NNG_PATCH_VERSION "@NNG_PATCH_VERSION@")
set_and_check(NNG_INCLUDE_DIRS "@PACKAGE_INCLUDE_INSTALL_DIRS@")