Skip to content

Commit

Permalink
Fix cmake package version properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
gdamore committed Jul 11, 2021
1 parent 6c0696b commit 9fcf039
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmake/nng-config.cmake.in
@@ -1,4 +1,4 @@
# Copyright 2018 Staysail Systems, Inc. <info@staysail.tech>
# Copyright 2021 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
Expand All @@ -8,9 +8,9 @@

@PACKAGE_INIT@

set(NNG_VERSION_MAJOR "@NNG_VERSION_MAJOR@")
set(NNG_VERSION_MINOR "@NNG_VERSION_MINOR@")
set(NNG_VERSION_PATCH "@NNG_VERSION_PATCH@")
set(NNG_VERSION_MAJOR "@NNG_MAJOR_VERSION@")
set(NNG_VERSION_MINOR "@NNG_MINOR_VERSION@")
set(NNG_VERSION_PATCH "@NNG_PATCH_VERSION@")

set_and_check(NNG_INCLUDE_DIRS "@PACKAGE_INCLUDE_INSTALL_DIRS@")

Expand Down

0 comments on commit 9fcf039

Please sign in to comment.