From 69ded38a1c954d0604e36992df392c4c32d7603a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 3 Oct 2018 10:31:47 +0100 Subject: [PATCH] meson: rename "enable-backend" option to "orc-backend" More consistent with the Meson option naming conventions. --- meson.build | 2 +- meson_options.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 7343175..25d048a 100644 --- a/meson.build +++ b/meson.build @@ -43,7 +43,7 @@ cdata.set('ORC_API_EXPORT', export_define) all_backends = ['sse', 'mmx', 'altivec', 'neon', 'mips', 'c64x'] # 'arm' -backend = get_option('enable-backend') +backend = get_option('orc-backend') foreach b : all_backends if backend == 'all' or backend == b cdata.set('ENABLE_BACKEND_' + b.to_upper(), 1) diff --git a/meson_options.txt b/meson_options.txt index 2e99f33..278e177 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,4 +1,4 @@ -option('enable-backend', type : 'combo', choices : ['sse', 'mmx', 'neon', 'mips', 'altivec', 'c64x', 'all'], value : 'all') +option('orc-backend', type : 'combo', choices : ['sse', 'mmx', 'neon', 'mips', 'altivec', 'c64x', 'all'], value : 'all') # Common feature options option('benchmarks', type : 'feature', value : 'auto', yield : true) -- 2.7.4