7 lines
55 B
Bash
Executable File
7 lines
55 B
Bash
Executable File
#!/bin/sh
|
|
mkdir -p build
|
|
cd build
|
|
cmake ..
|
|
make
|
|
./main
|