diff options
author | Erik Schnetter <schnetter@gmail.com> | 2015-10-16 13:35:13 -0400 |
---|---|---|
committer | Erik Schnetter <schnetter@gmail.com> | 2015-10-16 13:35:13 -0400 |
commit | 05b1ff274ebd0a1b2d4e921088b02f123ba78cb4 (patch) | |
tree | dcc1bf4a6d48edbafe88e1b0728f33fec5093769 /meson.build | |
parent | f934a0ea093ef7ed408b82fb0c1e1c905846de2c (diff) | |
download | vecmathlib-05b1ff274ebd0a1b2d4e921088b02f123ba78cb4.zip vecmathlib-05b1ff274ebd0a1b2d4e921088b02f123ba78cb4.tar.gz |
Add Meson build script
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..d1028cd --- /dev/null +++ b/meson.build @@ -0,0 +1,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) |