mirror of
https://github.com/zoriya/astal.git
synced 2025-12-06 06:06:10 +00:00
18 lines
377 B
Meson
18 lines
377 B
Meson
|
|
config = configure_file(
|
|
input: 'astal-river.h.in',
|
|
output: 'astal-river.h',
|
|
configuration: {
|
|
'VERSION': meson.project_version(),
|
|
'MAJOR_VERSION': version_split[0],
|
|
'MINOR_VERSION': version_split[1],
|
|
'MICRO_VERSION': version_split[2],
|
|
},
|
|
)
|
|
|
|
|
|
astal_river_inc = include_directories('.')
|
|
astal_river_headers = config
|
|
|
|
install_headers(astal_river_headers)
|