From b644317351eea504a9a6010c1f37889c13562840 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Sat, 13 Jul 2024 22:49:56 +0900 Subject: [PATCH] Attempt to fix conan build --- conanfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conanfile.py b/conanfile.py index e28a1a9..233edc7 100644 --- a/conanfile.py +++ b/conanfile.py @@ -53,5 +53,5 @@ class udpcRecipe(ConanFile): cmake.install() def package_info(self): - self.cpp_info.libs = ["UDPC"] - self.cpp_info.system_libs = ["stdc++"] + self.cpp_info.libs.append("UDPC") + self.cpp_info.system_libs.append("stdc++")