From adb60fc6abbb55abd7b6f495e027032b9af1f536 Mon Sep 17 00:00:00 2001 From: Inori Date: Wed, 31 Jul 2019 10:57:25 -0400 Subject: [PATCH] Remove unused build option I accidentally committed --- meson.build | 4 ---- meson_options.txt | 4 +--- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/meson.build b/meson.build index e0503734..c2a6af8b 100644 --- a/meson.build +++ b/meson.build @@ -29,10 +29,6 @@ elif host_system == 'darwin' endif endif -if static == true and host_system != 'darwin' - add_project_link_arguments('--static', 'cpp') -endif - executable(meson.project_name(), sources: all_sources, dependencies: [main_dependencies, binding_dependencies], diff --git a/meson_options.txt b/meson_options.txt index 48096994..915dbe41 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,6 +1,4 @@ option('shared_fluid', type: 'boolean', value: false, description: 'Dynamically link fluidsynth at build time') option('mri_version', type: 'string', value: '1.8', description: 'Version of MRI to link with') option('workdir_current', type: 'boolean', value: false, description: 'Keep current directory on startup') -option('ruby_lib', type: 'string', value: 'ruby', description: 'Name of legacy Ruby library') - -option('static', type: 'boolean', value: 'false', description: 'Statically link as many libraries as possible') \ No newline at end of file +option('ruby_lib', type: 'string', value: 'ruby', description: 'Name of legacy Ruby library') \ No newline at end of file