Skip to content

Commit

Permalink
Fix conan create package issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sheepy9 authored and jorgen committed Sep 13, 2024
1 parent addc61f commit 9876f25
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class JsonStructLibrary(ConanFile):
settings = "os", "compiler", "build_type", "arch"
pacgake_type = "header-library"
implements = ["auto_header_only"]
exports_sources = "include/*", "cmake/*" "CMakeLists.txt"
exports_sources = "include/*", "cmake/*", "CMakeLists.txt", "COPYING", "README.md", "package.xml"

options = {
"opt_build_benchmarks": [True, False],
Expand Down Expand Up @@ -62,6 +62,3 @@ def package(self):

def layout(self):
cmake_layout(self)

def package_id(self):
self.info.clear()

0 comments on commit 9876f25

Please sign in to comment.