blob: d1028cd2e91810c601c6c675c1e417e98dd7747e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# See file "BUILD" for instructions
project('vecmathlib', 'cpp')
selftest_exe = executable('selftest', 'selftest.cc')
bench_exe = executable('bench', 'bench.cc')
example_exe = executable('example', 'example.cc')
example_float_exe = executable('example_float', 'example_float.cc')
loop_exe = executable('loop', 'loop.cc')
interp_exe = executable('interp', 'interp.cc')
instantiations_lib = static_library('instantiations', 'instantiations.cc')
test('selftest', selftest_exe)
|