mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
meson: move idep_xmlconfig_headers to xmlpool/
That's where `xmlpool_options_h` is defined, and this way we can make sure nobody starts making use of it in the future :) Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Acked-by: Dylan Baker <dylan@pnwbakers.com>
This commit is contained in:
parent
02d9403067
commit
c32236811d
2 changed files with 6 additions and 6 deletions
|
|
@ -187,11 +187,6 @@ _libxmlconfig = static_library(
|
|||
build_by_default : false,
|
||||
)
|
||||
|
||||
idep_xmlconfig_headers = declare_dependency(
|
||||
sources : xmlpool_options_h,
|
||||
include_directories : inc_util,
|
||||
)
|
||||
|
||||
idep_xmlconfig = declare_dependency(
|
||||
dependencies : [idep_xmlconfig_headers, dep_expat],
|
||||
link_with : _libxmlconfig,
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ foreach lang : _langs
|
|||
_langs_po_files += files(lang + '.po')
|
||||
endforeach
|
||||
|
||||
xmlpool_options_h = custom_target(
|
||||
_xmlpool_options_h = custom_target(
|
||||
'xmlpool_options.h',
|
||||
input : ['gen_xmlpool.py', 't_options.h'],
|
||||
output : 'options.h',
|
||||
|
|
@ -36,6 +36,11 @@ xmlpool_options_h = custom_target(
|
|||
depend_files : _langs_po_files,
|
||||
)
|
||||
|
||||
idep_xmlconfig_headers = declare_dependency(
|
||||
sources : _xmlpool_options_h,
|
||||
include_directories : inc_util,
|
||||
)
|
||||
|
||||
if host_machine.system() != 'windows'
|
||||
i18n = import('i18n')
|
||||
i18n.gettext('xmlpool', install : false)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue