Skip to content

Commit

Permalink
Revert "Nothing in the include folder, so don't copy for package."
Browse files Browse the repository at this point in the history
This reverts commit de26739.
  • Loading branch information
rburema committed Mar 6, 2024
1 parent de26739 commit 45ca92c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def package(self):

copy(self,
pattern = "*.h",
# NOTE: Right now there's nothing in the include folder, but if there is, it should be copied to the package folder here. (Including it now will cause the build to fail.)
dst = os.path.join(self.package_folder, "include"), # <- this should probably be removed?
src = os.path.join(self.build_folder, "generated"))
copy(self,
pattern = "LICENSE*",
Expand Down
1 change: 1 addition & 0 deletions include/folder.placeholder
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
probably the line copying over the 'include' folder in the package function of the conan-file should be removed instead of adding this, but I'm running out of time today

0 comments on commit 45ca92c

Please sign in to comment.