mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-21 23:00:06 -07:00
12 lines
232 B
Plaintext
12 lines
232 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
export DESTDIR="$1"
|
||
|
|
||
|
cmake -B build \
|
||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||
|
-DLLVM_EXTERNAL_SPIRV_HEADERS_SOURCE_DIR=/usr/include/spirv \
|
||
|
-DLLVM_SPIRV_INCLUDE_TESTS=OFF
|
||
|
|
||
|
cmake --build build
|
||
|
cmake --install build
|