tests/date.c: include config.h to expose Vista+ macros
[glib.git] / gthread / meson.build
blob8d4696d29ac2286e0973a082ecb770be0f42d9bd
1 # Just a skeleton lib for backwards compatibility since all the functionaliy
2 # has been moved into glib now
4 gthread_sources = ['gthread-impl.c']
5 if host_system == 'windows'
6   gthread_win_rc = configure_file(
7     input: 'gthread.rc.in',
8     output: 'gthread.rc',
9     configuration: glibconfig_conf,
10   )
11   gthread_win_res = windows.compile_resources(gthread_win_rc)
12   gthread_sources += [gthread_win_res]
13 endif
15 libgthread = library('gthread-2.0',
16   sources : gthread_sources,
17   version : library_version,
18   soversion : soversion,
19   install : true,
20   dependencies : [libglib_dep],
21   c_args : ['-DG_LOG_DOMAIN="GThread"' ] + glib_hidden_visibility_args)