diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7a5a737 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ + + +all: build test + +build: + meson compile -C builddir + +test: + meson test -C builddir --suite turings_tarpit diff --git a/meson.build b/meson.build index 6a1a050..cd75d84 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('lcppthw', 'cpp', +project('turings_tarpit', 'cpp', default_options: ['cpp_std=c++20']) cmake = import('cmake') @@ -59,4 +59,4 @@ runtests = executable('runtests', [ ], dependencies: dependencies + [catch2]) -test('the tests', runtests) +test('tests', runtests)