Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authora1lu <a1lu@users.noreply.github.com>2020-10-10 16:22:48 +0300
committerGitHub <noreply@github.com>2020-10-10 16:22:48 +0300
commita162fa429f263bb6d94d92ee312787a92b533bf9 (patch)
tree45310f936e7d2d95ed881eef82a6d2aecc13f36a /conanfile.py
parentd819d82518571564e5a5cfd94b9c211290473aaf (diff)
Conanfile: Add protobuf-nanopb library to cpp_info.libs (#605)
Without this, there will be no links against the nanopb library when nanopb is integrated by conan
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/conanfile.py b/conanfile.py
index 515e560..d4a44fb 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -30,3 +30,4 @@ class NanoPbConan(ConanFile):
def package_info(self):
self.cpp_info.includedirs = ["include"]
self.cpp_info.libdirs = ["lib"]
+ self.cpp_info.libs = ["protobuf-nanopb"]