diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-01-04 09:49:34 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-01-04 14:27:16 +0200 |
commit | b62ccc5d017e54beecd72d64d2074473c49192a7 (patch) | |
tree | 3497d3b6da5d9feb29fa5edc8a0713f391ac209d /tests/small-list/buildfile | |
parent | 496aee483a5ccfa9c396de84dc0cedd234930ddc (diff) |
Implement small_list, small_forward_list
Note that with VC small_list is never "small" because of the extra "headnode"
that this implementation allocates (see notes in small-list.mxx for details).
Diffstat (limited to 'tests/small-list/buildfile')
-rw-r--r-- | tests/small-list/buildfile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/small-list/buildfile b/tests/small-list/buildfile new file mode 100644 index 0000000..02a87ad --- /dev/null +++ b/tests/small-list/buildfile @@ -0,0 +1,8 @@ +# file : tests/small-list/buildfile +# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +# license : MIT; see accompanying LICENSE file + +import libs = libbutl%lib{butl} +libs += $stdmod_lib + +exe{driver}: {hxx cxx}{*} $libs |