Skip to content

Commit 9876f25

Browse files
sheepy9jorgen
authored andcommitted
Fix conan create package issue
1 parent addc61f commit 9876f25

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

conanfile.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class JsonStructLibrary(ConanFile):
2121
settings = "os", "compiler", "build_type", "arch"
2222
pacgake_type = "header-library"
2323
implements = ["auto_header_only"]
24-
exports_sources = "include/*", "cmake/*" "CMakeLists.txt"
24+
exports_sources = "include/*", "cmake/*", "CMakeLists.txt", "COPYING", "README.md", "package.xml"
2525

2626
options = {
2727
"opt_build_benchmarks": [True, False],
@@ -62,6 +62,3 @@ def package(self):
6262

6363
def layout(self):
6464
cmake_layout(self)
65-
66-
def package_id(self):
67-
self.info.clear()

0 commit comments

Comments
 (0)