mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 05:55:58 +01:00
meson: use target_machine instead of host_machine
This commit is contained in:
parent
578e5614d4
commit
2e14bed9f7
1 changed files with 2 additions and 2 deletions
|
@ -17,8 +17,8 @@ project(
|
|||
# between minor releases.
|
||||
soversion = 11
|
||||
|
||||
little_endian = host_machine.endian() == 'little'
|
||||
big_endian = host_machine.endian() == 'big'
|
||||
little_endian = target_machine.endian() == 'little'
|
||||
big_endian = target_machine.endian() == 'big'
|
||||
|
||||
add_project_arguments([
|
||||
'-DWLR_USE_UNSTABLE',
|
||||
|
|
Loading…
Reference in a new issue