mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-18 21:26:07 +00:00
c2127d0819
Since Meson 0.44, subproject_dir may not be '.' anymore. This implies we must move app/ and server/ to a subprojects/ directory, which requires to also change some gradle files. Instead, just use subdir(), with options to disable building of the app or the server.
4 lines
149 B
Meson
4 lines
149 B
Meson
option('build_app', type: 'boolean', value: true)
|
|
option('build_server', type: 'boolean', value: true)
|
|
option('override_server_jar', type: 'string')
|