diff options
| author | Allusive <[email protected]> | 2023-11-17 12:29:37 +1100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-11-17 12:29:37 +1100 |
| commit | 065172521a622489f36c0d10b8acbf4f0337e5b2 (patch) | |
| tree | 52e78ef3465095d24f611cf9a4f187a8e4f2c39b /README.md | |
| parent | Added version checker. See README (diff) | |
| download | compfy-065172521a622489f36c0d10b8acbf4f0337e5b2.tar.xz compfy-065172521a622489f36c0d10b8acbf4f0337e5b2.zip | |
Update README.md
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -74,12 +74,22 @@ Can't find what you need in the wiki or have an problem? Open an Issue. ## Installation +Note if you want to enabled the `--check-for-update` option you will need to build with these commands instead. +(`--check-for-update` will print out your current version and the latest release version number if you are connected to the internet) + ### Building Manually +Without `--check-for-update`: ``` $ meson setup . build $ ninja -C build $ ninja -C build install ``` +With `--check-for-update`: +``` +$ meson setup -Dupdate_checks=true . build +$ ninja -C build +$ ninja -C build install +``` Dependencies: @@ -100,6 +110,11 @@ gcc (make) git (make) meson (make) ninja (make) + +# If you enabled -Dupdate-checks you will also need these dependencies. + +'json-c' or 'json_c' +'curl' or 'libcurl' ``` ### Arch Linux or other Arch based distros |