summaryrefslogtreecommitdiff
path: root/taro/tests
diff options
context:
space:
mode:
Diffstat (limited to 'taro/tests')
-rw-r--r--taro/tests/meson.build1
-rw-r--r--taro/tests/notcurses_ffmpeg.c6
2 files changed, 4 insertions, 3 deletions
diff --git a/taro/tests/meson.build b/taro/tests/meson.build
new file mode 100644
index 0000000..00ecb00
--- /dev/null
+++ b/taro/tests/meson.build
@@ -0,0 +1 @@
+executable('notcurses_test', ['notcurses_ffmpeg.c'], dependencies: [naunet, notcurses, notcurses_core])
diff --git a/taro/tests/notcurses_ffmpeg.c b/taro/tests/notcurses_ffmpeg.c
index dd798c9..adf9689 100644
--- a/taro/tests/notcurses_ffmpeg.c
+++ b/taro/tests/notcurses_ffmpeg.c
@@ -1,11 +1,11 @@
#include <al/types.h>
-#include <aki/common.h>
+#include <nnwt/common.h>
#include <notcurses/notcurses.h>
#include <notcurses/nckeys.h>
s32 main(void)
{
- if (!aki_common_init()) return EXIT_FAILURE;
+ if (!nn_common_init()) return EXIT_FAILURE;
struct notcurses *nc = notcurses_init(NULL, stdin);
@@ -29,7 +29,7 @@ s32 main(void)
out:
notcurses_stop(nc);
- aki_common_close();
+ nn_common_close();
return EXIT_SUCCESS;
}