mirror of
https://github.com/labwc/labwc.git
synced 2025-11-03 09:01:51 -05:00
17 lines
289 B
Bash
Executable file
17 lines
289 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Automatically build labwc
|
|
#
|
|
|
|
builddir=build-clang
|
|
|
|
if ! [ -e subprojects/wlroots ]; then
|
|
git clone https://github.com/swaywm/wlroots subprojects/wlroots
|
|
fi
|
|
|
|
|
|
if ! [ -e ${builddir} ]; then
|
|
CC=clang meson -Dwlroots:default_library=static ${builddir}
|
|
fi
|
|
|
|
ninja -C ${builddir}
|