aboutsummaryrefslogtreecommitdiff
path: root/tests/small-vector/buildfile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-11-19 18:04:00 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-19 18:04:00 +0200
commit499a78602432c4926004f859d5fe957c313adc09 (patch)
treee94ac38a2d8572444c94ad12b0118936c7290b2e /tests/small-vector/buildfile
parent834f0df3850c2b115e2febbf5b6bdafbe88651e2 (diff)
Add small_vector<T, N> class template
It has a (mostly) std::vector interface (it derives from it) and will store up to N elements in the same storage as the vector instance itself.
Diffstat (limited to 'tests/small-vector/buildfile')
-rw-r--r--tests/small-vector/buildfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/small-vector/buildfile b/tests/small-vector/buildfile
new file mode 100644
index 0000000..78d2d06
--- /dev/null
+++ b/tests/small-vector/buildfile
@@ -0,0 +1,8 @@
+# file : tests/small-vector/buildfile
+# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
+# license : MIT; see accompanying LICENSE file
+
+exe{driver}: cxx{driver} ../../butl/lib{butl}
+exe{driver}: test.arguments = $src_root
+
+include ../../butl/