mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
03e86d000f
Since GLib files are only meant to be built as part of GLib, config.h always exists, so the checks are more or less pointless. https://bugzilla.gnome.org/show_bug.cgi?id=793399
16 lines
431 B
Meson
16 lines
431 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 : [ '-DG_DISABLE_DEPRECATED' ] + gio_c_args)
|