diff --git a/conanfile.py b/conanfile.py index f19d2e9..25c92bb 100644 --- a/conanfile.py +++ b/conanfile.py @@ -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*", diff --git a/include/folder.placeholder b/include/folder.placeholder new file mode 100644 index 0000000..b72dd87 --- /dev/null +++ b/include/folder.placeholder @@ -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