mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-11-23 10:49:02 +01:00
15 lines
508 B
Meson
15 lines
508 B
Meson
|
|
|
||
|
|
if host_system == 'windows'
|
||
|
|
static_lib = static_library('os-profile-app-static-lib',
|
||
|
|
sources: ['app.c'],
|
||
|
|
include_directories: [configinc])
|
||
|
|
|
||
|
|
resources = windows.compile_resources('app.rc',
|
||
|
|
depend_files: ['app.manifest.xml'])
|
||
|
|
|
||
|
|
app_profile_dep = declare_dependency(link_whole: [static_lib],
|
||
|
|
sources: [resources])
|
||
|
|
else
|
||
|
|
app_profile_dep = declare_dependency()
|
||
|
|
endif
|