add some sample configureations for a few os's

the idea is - if the configure fails .. provide the dep it's asking
for. that simple. the rest of the build is the same (ninja -C build
etc.)
This commit is contained in:
Carsten Haitzler 2020-01-25 15:47:22 +00:00
parent 9fa1b5b112
commit c6349ffd60
5 changed files with 16 additions and 0 deletions

3
confs/freebsd.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh -e
meson -Dsystemd=false -Dv4l2=false -Deeze=false -Devas-loaders-disabler=json \
$@ . build

4
confs/linux-elogind.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh -e
meson -Dfb=true -Ddrm=true -Dwl=true -Devas-loaders-disabler=json \
-Dsystemd=false -Delogind=true \
$@ . build

View File

@ -0,0 +1,3 @@
#!/bin/sh -e
meson -Dfb=true -Dsystemd=false -Devas-loaders-disabler=json \
$@ . build

3
confs/linux-nowayland.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh -e
meson -Dfb=true -Devas-loaders-disabler=json \
$@ . build

3
confs/linux.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh -e
meson -Dfb=true -Ddrm=true -Dwl=true -Devas-loaders-disabler=json \
$@ . build