mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 19:36:18 +01:00
ee94ad776e
This is a stub-only library that can be used while building against MSVC and contains no i18n machinery at all. The dependencies added indirectly use the libintl.h header, and when built as a subproject, the header won't be in a path known the pre-processor.
16 lines
450 B
Meson
16 lines
450 B
Meson
giowin32_sources = [
|
|
'gwin32fsmonitorutils.c',
|
|
'gwin32filemonitor.c',
|
|
'gwinhttpvfs.c',
|
|
'gwinhttpfile.c',
|
|
'gwinhttpfileinputstream.c',
|
|
'gwinhttpfileoutputstream.c',
|
|
]
|
|
|
|
giowin32_lib = static_library('giowin32',
|
|
sources : [giowin32_sources, gioenumtypes_h],
|
|
include_directories : [configinc, glibinc, gioinc, gmoduleinc],
|
|
dependencies : [libintl],
|
|
pic : true,
|
|
c_args : [ '-DHAVE_CONFIG_H', '-DG_DISABLE_DEPRECATED' ] + gio_c_args)
|