diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2020-01-05 14:20:46 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2020-01-05 14:20:46 +0100 |
| commit | 1f33b0c0c5763152e10d0e13af7cdc914b7d7064 (patch) | |
| tree | 7d949df0d32d852f3c33ae81be46c9fbe42357a9 | |
| parent | e2fb4684c45ec8c8b254baa105c2d6d803882425 (diff) | |
| download | newtype-1f33b0c0c5763152e10d0e13af7cdc914b7d7064.tar.xz newtype-1f33b0c0c5763152e10d0e13af7cdc914b7d7064.zip | |
pkg: only add dependencies when building
| -rw-r--r-- | conanfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conanfile.py b/conanfile.py index 6fcbf48..ce151dd 100644 --- a/conanfile.py +++ b/conanfile.py @@ -25,7 +25,7 @@ class NewtypeConan(ConanFile): url = "https://github.com/fmorgner/newtype" description = "A library of types and functions to create strong type aliases" generators = "cmake" - requires = ( + build_requires = ( "CUTE/2.2.6@fmorgner/stable", "lyra/1.2.0" ) |
