Skip to content

Commit

Permalink
... but _don't_ exclude anything when exporting sources.
Browse files Browse the repository at this point in the history
part of CURA-11378
  • Loading branch information
rburema committed Nov 28, 2023
1 parent edffb97 commit 686fc0b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ def export_sources(self):
copy(self, "*", path.join(self.recipe_folder, "src"), path.join(self.export_sources_folder, "src"))
copy(self, "*", path.join(self.recipe_folder, "include"), path.join(self.export_sources_folder, "include"))
copy(self, "*", path.join(self.recipe_folder, "benchmark"), path.join(self.export_sources_folder, "benchmark"))
if self.settings.os != "Windows":
copy(self, "*", path.join(self.recipe_folder, "stress_benchmark"), path.join(self.export_sources_folder, "stress_benchmark"))
copy(self, "*", path.join(self.recipe_folder, "stress_benchmark"), path.join(self.export_sources_folder, "stress_benchmark"))
copy(self, "*", path.join(self.recipe_folder, "tests"), path.join(self.export_sources_folder, "tests"))

def config_options(self):
Expand Down

0 comments on commit 686fc0b

Please sign in to comment.