Skip to content

Commit

Permalink
Update meson.build
Browse files Browse the repository at this point in the history
Detecting architecture.
  • Loading branch information
OB0NE authored Sep 8, 2024
1 parent 3261db0 commit cadf4d0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,14 @@ profile = get_option('profile')
build_ui = get_option('ui')
build_cli = get_option('cli')
ci = get_option('ci')
win_build_environment_path = get_option('win-build-environment-path')

# Detecting architecture
if host_machine.cpu_family() == 'aarch64'
win_build_environment_path = get_option('win-arm64-build-environment-path')
else
win_build_environment_path = get_option('win-build-environment-path')
endif

win_installer_name = get_option('win-installer-name')

app_name = 'rnote'
Expand Down

0 comments on commit cadf4d0

Please sign in to comment.