From 6249f03367d7dd550275ea36c37b7ec786c45517 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Fri, 7 Jun 2019 22:42:09 -0400 Subject: [PATCH] Add janet_dep to meson build file. --- meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meson.build b/meson.build index 47db1dff..ab311cf0 100644 --- a/meson.build +++ b/meson.build @@ -180,6 +180,10 @@ endforeach # Repl run_target('repl', command : [janet_nativeclient]) +# For use as meson subproject (wrap) +janet_dep = declare_dependency(include_directories : incdir, + link_with : libjanet) + # Installation install_man('janet.1') install_headers('src/include/janet.h', 'src/include/janetconf.h', subdir: 'janet')