From 430864f06b16a5b4ae69bbae9ef00bcca9674b1d Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Sun, 28 Oct 2018 16:39:54 -0300 Subject: [PATCH] remove flags --- src/meson.build | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/meson.build b/src/meson.build index 8e11f7b..cefb721 100644 --- a/src/meson.build +++ b/src/meson.build @@ -9,13 +9,13 @@ libpq_dep = dependency('libpq', version: '>=10.0') cc = meson.get_compiler('c') # -no-pie so that the executable is double clickable in gui -if cc.get_id() == 'gcc' - c_args = ['-no-pie'] - link_args = ['-no-pie'] -else - c_args = '' - link_args = '' -endif +#if cc.get_id() == 'gcc' +# c_args = ['-no-pie'] +# link_args = ['-no-pie'] +#else +# c_args '' +# link_args '' +#endif vala_sources = files( 'sernatur.vala', @@ -32,8 +32,6 @@ vala_args += ['--gresources='+join_paths(meson.source_root(),'data/ui/sernatur.g exe = executable('sernatur', sources, - c_args: c_args, - link_args: link_args, vala_args: vala_args, dependencies: [gtk_dep, gmodule_dep, libpq_dep], install: true)