File: meson.build

package info (click to toggle)
glib2.0 2.86.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid
  • size: 66,452 kB
  • sloc: ansic: 544,604; python: 9,702; sh: 1,612; xml: 1,482; perl: 1,222; cpp: 535; makefile: 321; javascript: 11
file content (15 lines) | stat: -rw-r--r-- 424 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# glib enables various warnings which the libcharset code wasn’t designed to
# work with
extra_charset_args = cc.get_supported_arguments([
  '-Wno-sign-conversion',
])

charset_lib = static_library('charset', 'localcharset.c',
  include_directories : configinc,
  pic : true,
  c_args : [
    '-DGLIB_CHARSETALIAS_DIR="@0@"'.format(glib_charsetaliasdir),
    extra_charset_args,
  ],
  gnu_symbol_visibility : 'hidden',
)