From eea9e1efd7b9f790fd382c70c10e997ba3fd3aba Mon Sep 17 00:00:00 2001 From: solvingj Date: Sat, 26 Aug 2017 13:53:03 -0400 Subject: [PATCH] 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. --- conanfile.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conanfile.py b/conanfile.py index 5c7d9931..f1825814 100644 --- a/conanfile.py +++ b/conanfile.py @@ -14,3 +14,6 @@ class CatchConan(ConanFile): def package(self): self.copy(pattern="catch.hpp", src="single_include", dst="include") + + def package_id(self): + self.info.header_only()