diff options
| author | 2024-12-24 15:04:18 -0500 | |
|---|---|---|
| committer | 2024-12-24 16:56:02 -0500 | |
| commit | 473a3f42333d03a1d5c4abcbbd4d3f86b81ba1f3 (patch) | |
| tree | baea7f4cc4d28064d27023affdea99439d948db9 /taro/tests | |
| parent | 37a45ee3ae3a7b6b1754a5199ca1750529b09575 (diff) | |
| download | mauri-473a3f42333d03a1d5c4abcbbd4d3f86b81ba1f3.tar.gz mauri-473a3f42333d03a1d5c4abcbbd4d3f86b81ba1f3.tar.bz2 mauri-473a3f42333d03a1d5c4abcbbd4d3f86b81ba1f3.zip | |
Update for dependency name change
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'taro/tests')
| -rw-r--r-- | taro/tests/meson.build | 1 | ||||
| -rw-r--r-- | taro/tests/notcurses_ffmpeg.c | 6 |
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; } |