2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-12-21 23:00:06 -07:00
repo/extra/libclc/build

13 lines
207 B
Plaintext
Raw Normal View History

2024-09-07 12:47:01 -06:00
#!/bin/sh -e
export DESTDIR="$1"
cd libclc
cmake -B build \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DLIBCLC_TARGETS_TO_BUILD=''
cmake --build build
cmake --install build