mirror of
https://codeberg.org/kiss-community/repo
synced 2025-03-10 07:19:57 -06:00
12 lines
208 B
Plaintext
12 lines
208 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
export DESTDIR="$1"
|
||
|
|
||
|
cmake -B build \
|
||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||
|
-DSPIRV_HEADERS_ENABLE_TESTS=OFF \
|
||
|
-DSPIRV_HEADERS_ENABLE_INSTALL=ON
|
||
|
|
||
|
cmake --build build
|
||
|
cmake --install build
|