lib: add more c_args handling for places we missed before

These meson files did not have the c_args handling before. Make sure we
use package_c_args here as well.

Reviewed-by: Vincent Torri <vincent.torri@gmail.com>
Reviewed-by: João Paulo Taylor Ienczak Zanette <joao.tiz@expertisesolutions.com.br>
Differential Revision: https://phab.enlightenment.org/D11860
This commit is contained in:
Stefan Schmidt 2020-05-19 16:30:08 +02:00 committed by Marcel Hollerbach
parent 935c17c655
commit b135341961
8 changed files with 8 additions and 0 deletions

View File

@ -9,6 +9,7 @@ config_h.set('HAVE_AVAHI', '1')
ecore_avahi_lib = library('ecore_avahi',
ecore_avahi_src,
c_args : package_c_args,
dependencies: [m] + ecore_avahi_deps + ecore_avahi_pub_deps,
include_directories : config_dir + [include_directories(join_paths('..','..'))],
install: true,

View File

@ -19,6 +19,7 @@ ecore_buffer_src = [
ecore_buffer_lib = library('ecore_buffer',
ecore_buffer_src, pub_eo_file_target,
c_args : package_c_args,
dependencies: ecore_buffer_pub_deps + ecore_buffer_deps,
include_directories : config_dir,
install: true,

View File

@ -27,6 +27,7 @@ evas_include_directories = [
ecore_cocoa_lib = library('ecore_cocoa',
ecore_cocoa_src, pub_eo_file_target,
c_args : package_c_args,
dependencies: ecore_cocoa_deps + ecore_cocoa_pub_deps,
include_directories : config_dir + evas_include_directories,
link_args : ['-lobjc', '-framework', 'CoreFoundation', '-framework', 'cocoa', '-Wl,-U,_evas_textblock_text_markup_to_utf8'],

View File

@ -16,6 +16,7 @@ ecore_drm2_src = [
ecore_drm2_lib = library('ecore_drm2',
ecore_drm2_src, pub_eo_file_target,
c_args : package_c_args,
dependencies: ecore_drm2_pub_deps + ecore_drm2_deps,
include_directories : config_dir,
install: true,

View File

@ -20,6 +20,7 @@ ecore_fb_src = [
ecore_fb_lib = library('ecore_fb',
ecore_fb_src, pub_eo_file_target,
c_args : package_c_args,
dependencies: ecore_fb_pub_deps + ecore_fb_deps,
include_directories : config_dir,
install: true,

View File

@ -24,6 +24,7 @@ ecore_wl2_src = [
ecore_wl2_lib = library('ecore_wl2',
ecore_wl2_src, pub_eo_file_target,
c_args : package_c_args,
dependencies: ecore_wl2_deps + ecore_wl2_pub_deps,
include_directories : config_dir,
install: true,

View File

@ -129,6 +129,7 @@ ecore_x_deps += lib
ecore_x_lib = library('ecore_x',
ecore_x_src, pub_eo_file_target,
c_args : package_c_args,
dependencies: ecore_x_pub_deps + ecore_x_deps,
include_directories : config_dir,
install: true,

View File

@ -21,6 +21,7 @@ elput_deps += dependency('libudev')
elput_lib = library('elput',
elput_src, pub_eo_file_target,
c_args : package_c_args,
dependencies: elput_pub_deps + elput_deps,
include_directories : config_dir,
install: true,