diff options
author | Mihai Fufezan <[email protected]> | 2023-01-06 16:21:42 +0200 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2023-01-06 16:22:00 +0200 |
commit | a54247125f91358ef717ecee8801c4acebdb0b55 (patch) | |
tree | 927cb0a28b89aac2af1bae67ba79b586d3fc76b4 /meson.build | |
parent | 98ce867104b855824ee218296f91664e1fd60545 (diff) | |
download | Hyprland-a54247125f91358ef717ecee8801c4acebdb0b55.tar.gz Hyprland-a54247125f91358ef717ecee8801c4acebdb0b55.zip |
Build: use props file for versioning
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 5c096f8a..2f6892a0 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('Hyprland', 'cpp', 'c', - version : '0.20.0beta', + version : run_command('jq', '-r', '.version', join_paths(meson.source_root(), 'props.json'), check: true).stdout().strip(), default_options : [ 'warning_level=2', 'default_library=static', |