mirror of
https://github.com/vale981/ray
synced 2025-03-05 18:11:42 -05:00
9 lines
158 B
Bash
Executable file
9 lines
158 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
ROOT_DIR=$(cd "$(dirname "${BASH_SOURCE:-$0}")"; pwd)
|
|
|
|
mkdir -p "$ROOT_DIR/build"
|
|
pushd "$ROOT_DIR/build"
|
|
cmake ..
|
|
make install
|
|
popd
|