7 lines
127 B
Bash
7 lines
127 B
Bash
|
#!/usr/bin/bash
|
||
|
|
||
|
export CMAKE_GENERATOR="Ninja"
|
||
|
cmake -B build
|
||
|
cmake --build build --config Release
|
||
|
sudo cmake --install build
|