Skip to content

Commit

Permalink
Fix exported sources in conanfile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Dec 7, 2022
1 parent c369c28 commit 7d55b36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class CupochConan(ConanFile):
default_options = {"shared": False, "fPIC": True}
build_policy = "missing"

exports_sources = ["include/*", "src/*", "cmake/*", "third_party/*", "CMakeLists.txt"]
exports_sources = ["include/*", "src/*", "cmake/*", "examples/*", "scripts/*", "third_party/*", "CMakeLists.txt"]

@property
def _with_unit_tests(self):
Expand Down

0 comments on commit 7d55b36

Please sign in to comment.