aboutsummaryrefslogtreecommitdiff
path: root/build_litexl.sh
blob: 42a91b17b5d45901604b8d065bb0828a117b10e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
set -e

TEMP_DIR="$(mktemp -d)"
function cleanup {
  rm -rf $TEMP_DIR
}
trap cleanup EXIT

cd $TEMP_DIR

git clone https://github.com/lite-xl/lite-xl repo
cd repo

meson build -Dwrap_mode=forcefallback
ninja -C build