Accept prebuilt server

Expose a 'prebuilt_server' option to pass the path of the prebuilt
binary, so that the build does not require Android SDK.

Usage:

    meson builddir -Dprebuilt_server=/tmp/my_prebuilt_server.jar
This commit is contained in:
Romain Vimont
2018-02-14 16:25:13 +01:00
parent 0efa9305eb
commit 07983d914f
2 changed files with 20 additions and 7 deletions

View File

@@ -1,3 +1,4 @@
option('build_app', type: 'boolean', value: true)
option('build_server', type: 'boolean', value: true)
option('prebuilt_server', type: 'string')
option('override_server_jar', type: 'string')