forked from GradienceTeam/Gradience
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
meson: remove depracation warnings in newer Meson versions
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
install: | ||
sudo meson builddir --prefix=/usr/local --wipe | ||
sudo meson setup builddir --prefix=/usr/local --wipe | ||
sudo ninja -C builddir install | ||
|
||
global: | ||
sudo meson builddir --prefix=/usr --wipe | ||
sudo meson setup builddir --prefix=/usr --wipe | ||
sudo ninja -C builddir install | ||
|
||
release: | ||
sudo meson builddir --prefix=/usr --Dbuildtype=release --wipe | ||
sudo meson setup builddir --prefix=/usr --Dbuildtype=release --wipe | ||
sudo ninja -C builddir install | ||
|
||
user: | ||
meson builddir --prefix="$(shell pwd)/builddir" --buildtype=debug --wipe | ||
meson setup builddir --prefix="$(shell pwd)/builddir" --buildtype=debug --wipe | ||
ninja -C builddir install | ||
ninja -C builddir run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters