From cb368ec3c782f25ad86bb64cfe4c61b1758ef782 Mon Sep 17 00:00:00 2001 From: Chris Mc Date: Wed, 5 Apr 2023 14:55:17 -0700 Subject: [PATCH] utfcpp: add package_type and generate packages --- recipes/utfcpp/all/conanfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/utfcpp/all/conanfile.py b/recipes/utfcpp/all/conanfile.py index 2d5820625e176..34e0685b4ddb2 100644 --- a/recipes/utfcpp/all/conanfile.py +++ b/recipes/utfcpp/all/conanfile.py @@ -14,6 +14,7 @@ class UtfCppConan(ConanFile): description = "UTF-8 with C++ in a Portable Way" topics = ("utf", "utf8", "unicode", "text") license = "BSL-1.0" + package_type = "header-library" settings = "os", "arch", "compiler", "build_type" no_copy_source = True @@ -24,8 +25,7 @@ def layout(self): basic_layout(self, src_folder="src") def source(self): - get(self, **self.conan_data["sources"][self.version], - destination=self.source_folder, strip_root=True) + get(self, **self.conan_data["sources"][self.version], strip_root=True) def build(self): pass