mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-05 06:00:21 +00:00
fffeedffda
The High DPI support is enabled by default, so that the renderer use the full definition of High DPI screens. However, there are still mouse coordinates problems on some MacOS having High DPI support (but not all), so expose a way to disable it.
7 lines
562 B
Meson
7 lines
562 B
Meson
option('build_app', type: 'boolean', value: true, description: 'Build the client')
|
|
option('build_server', type: 'boolean', value: true, description: 'Build the server')
|
|
option('prebuilt_server', type: 'string', description: 'Path of the prebuilt server')
|
|
option('override_server_path', type: 'string', description: 'Hardcoded path to find the server at runtime')
|
|
option('skip_frames', type: 'boolean', value: true, description: 'Always display the most recent frame')
|
|
option('hidpi_support', type: 'boolean', value: true, description: 'Enable High DPI support')
|