mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-09 07:10:29 +00:00
3a66b5fd01
This method is deprecated since Meson 0.56.0:
<https://mesonbuild.com/Release-notes-for-0-56-0.html#mesonbuild_root-and-mesonsource_root-are-deprecated>
We could replace it with meson.project_source_root(), but this would
make Meson 0.56 or above mandatory. Since the path in always computed
from the server/ directory, just add '..' to reference the root project
directory.
Refs c456e38264
26 lines
1.1 KiB
Meson
26 lines
1.1 KiB
Meson
# It may be useful to use a prebuilt server, so that no Android SDK is required
|
|
# to build. If the 'prebuilt_server' option is set, just copy the file as is.
|
|
prebuilt_server = get_option('prebuilt_server')
|
|
if prebuilt_server == ''
|
|
custom_target('scrcpy-server',
|
|
# gradle is responsible for tracking source changes
|
|
build_by_default: true,
|
|
build_always_stale: true,
|
|
output: 'scrcpy-server',
|
|
command: [find_program('./scripts/build-wrapper.sh'), meson.current_source_dir(), '@OUTPUT@', get_option('buildtype')],
|
|
console: true,
|
|
install: true,
|
|
install_dir: 'share/scrcpy')
|
|
else
|
|
if not prebuilt_server.startswith('/')
|
|
# prebuilt server path is relative to the root scrcpy directory
|
|
prebuilt_server = '../' + prebuilt_server
|
|
endif
|
|
custom_target('scrcpy-server-prebuilt',
|
|
input: prebuilt_server,
|
|
output: 'scrcpy-server',
|
|
command: ['cp', '@INPUT@', '@OUTPUT@'],
|
|
install: true,
|
|
install_dir: 'share/scrcpy')
|
|
endif
|