summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRasmus Thomsen <oss@cogitri.dev>2020-05-19 10:11:49 +0200
committerTimo Teräs <timo.teras@iki.fi>2020-10-09 16:09:19 +0300
commitf6795011cab8da4fbf8e719f71d2028de1ca389e (patch)
tree657a4539446b54b81c7b859bacc3055887eed6b2 /src
parent718e07f78a6f5a5a1c5c1a961308bd85afb4db30 (diff)
downloadapk-tools-f6795011cab8da4fbf8e719f71d2028de1ca389e.tar.gz
apk-tools-f6795011cab8da4fbf8e719f71d2028de1ca389e.tar.bz2
apk-tools-f6795011cab8da4fbf8e719f71d2028de1ca389e.tar.xz
apk-tools-f6795011cab8da4fbf8e719f71d2028de1ca389e.zip
build: allow building without help in meson
Diffstat (limited to 'src')
-rw-r--r--src/meson.build25
1 files changed, 17 insertions, 8 deletions
diff --git a/src/meson.build b/src/meson.build
index 972e4b4..07beac7 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -54,15 +54,24 @@ apk_src = [
'help.c',
]
-genhelp_script = find_program('genhelp.lua')
+if lua_bin.found()
+ genhelp_script = find_program('genhelp.lua')
-generated_help = custom_target(
- 'help.h',
- capture: true,
- output: 'help.h',
- input: man_files,
- command: [genhelp_script, '@INPUT@'],
-)
+ generated_help = custom_target(
+ 'help.h',
+ capture: true,
+ output: 'help.h',
+ input: man_files,
+ command: [genhelp_script, '@INPUT@'],
+ )
+else
+ generated_help = custom_target(
+ 'help.h',
+ capture: true,
+ output: 'help.h',
+ command: ['echo', '#define NO_HELP'],
+ )
+endif
apk_src += [ generated_help ]