mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-21 14:50:07 -07:00
11 lines
167 B
Bash
Executable File
11 lines
167 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
cmake -B build \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DSPIRV-Headers_SOURCE_DIR=/usr
|
|
|
|
cmake --build build
|
|
cmake --install build
|