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