nbos

nbos

https://git.tonybtw.com/nbos.git git://git.tonybtw.com/nbos.git
179 bytes raw
1
#!/bin/sh
2
set -eu
3
4
cmake -B build -S . \
5
    -DCMAKE_BUILD_TYPE=Release \
6
    -DCMAKE_INSTALL_PREFIX="$NB_OUT/usr"
7
cmake --build build --parallel "$NB_JOBS"
8
cmake --install build