fish: functions: Add aliases for meson

GStreamer now uses these meson commands instead of ninja. We need
these aliases with GStreamer frequently.
This commit is contained in:
Sanchayan Maity 2023-04-26 10:50:34 +05:30
parent 95cb836e8d
commit d9f9952ca1
Signed by: sanchayanmaity
GPG Key ID: 6F6A0609C12038F3
6 changed files with 9 additions and 9 deletions

View File

@ -0,0 +1,3 @@
function mb
meson compile -C build
end

View File

@ -0,0 +1,3 @@
function mc
meson compile --clean -C build
end

View File

@ -0,0 +1,3 @@
function md
meson devenv -C build
end

View File

@ -1,3 +0,0 @@
function nb
ninja -C build
end

View File

@ -1,3 +0,0 @@
function nbc
ninja -C build clean
end

View File

@ -1,3 +0,0 @@
function nbd
ninja -C build devenv
end