diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-07-14 22:25:11 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-07-14 22:25:11 +0300 |
commit | 82fedb5e0f17c7434d514b39b8972c2b24e1b816 (patch) | |
tree | 9238704297ce091f50d75e75dd6d2058bd16e1b3 /tests | |
parent | 60f5ad7e492fcec50a42bba830b97dfc5a6525ff (diff) |
Make use of wildcards in buildfiles
Diffstat (limited to 'tests')
-rw-r--r-- | tests/basics/buildfile | 2 | ||||
-rw-r--r-- | tests/buildfile | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/tests/basics/buildfile b/tests/basics/buildfile index 1a95a8a..a552895 100644 --- a/tests/basics/buildfile +++ b/tests/basics/buildfile @@ -4,4 +4,4 @@ import libs = libodb-pgsql%lib{odb-pgsql} -exe{driver}: cxx{driver} $libs +exe{driver}: {hxx cxx}{*} $libs diff --git a/tests/buildfile b/tests/buildfile index 8502dbe..545984d 100644 --- a/tests/buildfile +++ b/tests/buildfile @@ -2,6 +2,4 @@ # copyright : Copyright (c) 2009-2017 Code Synthesis Tools CC # license : GNU GPL v2; see accompanying LICENSE file -d = basics/ -./: $d -include $d +./: {*/ -build/} |