diff options
author | Mihai Fufezan <[email protected]> | 2024-07-18 21:27:03 +0300 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2024-07-21 19:24:17 +0300 |
commit | 928d1dd38a6e4a791d4a4374a4a3bf02311adbb2 (patch) | |
tree | 28ea69ce96fb5e9a8fb2ebfdf0742b042cc36661 /meson.build | |
parent | faa157e1626fb56b5f01ac0597518cc41bf1c40b (diff) | |
download | Hyprland-928d1dd38a6e4a791d4a4374a4a3bf02311adbb2.tar.gz Hyprland-928d1dd38a6e4a791d4a4374a4a3bf02311adbb2.zip |
CMake, Meson, Nix: replace props.json with VERSION
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 b8101f6c..4446ea0f 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('Hyprland', 'cpp', 'c', - version : run_command('jq', '-r', '.version', join_paths(meson.source_root(), 'props.json'), check: true).stdout().strip(), + version : run_command('cat', join_paths(meson.source_root(), 'VERSION'), check: true).stdout().strip(), default_options : [ 'warning_level=2', 'default_library=static', |