mirror of
https://gitlab.freedesktop.org/upower/upower.git
synced 2025-12-20 04:20:04 +01:00
10 lines
269 B
Meson
10 lines
269 B
Meson
executable('upower',
|
|
sources: [
|
|
'up-tool.c',
|
|
],
|
|
dependencies: [ libupower_glib_dep ],
|
|
gnu_symbol_visibility: 'hidden',
|
|
install: true,
|
|
install_dir: get_option('prefix') / get_option('bindir'),
|
|
c_args: [ '-DG_LOG_DOMAIN="UPower"' ],
|
|
)
|