Merge branch 'compile-windows-resources-only-shared' into 'main'

gio, gmodule, gthread: compile windows resources only in shared build

See merge request GNOME/glib!3842
This commit is contained in:
Philip Withnall 2024-01-21 20:42:15 +00:00
commit ca0e7c376a
3 changed files with 11 additions and 9 deletions

View File

@ -458,13 +458,15 @@ else
'gwin32sid.h',
)
gio_win_rc = configure_file(
input: 'gio.rc.in',
output: 'gio.rc',
configuration: glibconfig_conf,
)
gio_win_res = windows.compile_resources(gio_win_rc)
win32_sources += [gio_win_res]
if glib_build_shared
gio_win_rc = configure_file(
input: 'gio.rc.in',
output: 'gio.rc',
configuration: glibconfig_conf,
)
gio_win_res = windows.compile_resources(gio_win_rc)
win32_sources += [gio_win_res]
endif
gio_win32_include_headers = files(
'gregistrysettingsbackend.h',

View File

@ -80,7 +80,7 @@ gmodule_visibility_h = custom_target(
gmodule_sources = [gmodule_c, gmodule_visibility_h, gmodule_deprecated_c]
if host_system == 'windows'
if host_system == 'windows' and glib_build_shared
gmodule_win_rc = configure_file(
input: 'gmodule.rc.in',
output: 'gmodule.rc',

View File

@ -2,7 +2,7 @@
# has been moved into glib now
gthread_sources = ['gthread-impl.c']
if host_system == 'windows'
if host_system == 'windows' and glib_build_shared
gthread_win_rc = configure_file(
input: 'gthread.rc.in',
output: 'gthread.rc',