commit | eea9e1efd7b9f790fd382c70c10e997ba3fd3aba | [log] [tgz] |
---|---|---|
author | solvingj <[email protected]> | Sat Aug 26 13:53:03 2017 -0400 |
committer | Martin Hořeňovský <[email protected]> | Tue Oct 31 14:09:44 2017 +0100 |
tree | af0f25fd10d8bb5a5f8997316f7e400071c386c7 | |
parent | 601b2888ec6951a4adff224979d530f607a566df [diff] [blame] |
Minor - added header-only flag in conan See header-only guidelines: http://conanio.readthedocs.io/en/latest/howtos/header_only.html?highlight=header%20only Its borderline cosmetic, but it does have a purpose.
diff --git a/conanfile.py b/conanfile.py index 5c7d993..f182581 100644 --- a/conanfile.py +++ b/conanfile.py
@@ -14,3 +14,6 @@ def package(self): self.copy(pattern="catch.hpp", src="single_include", dst="include") + + def package_id(self): + self.info.header_only()