7 lines
120 B
Bash
Executable file
7 lines
120 B
Bash
Executable file
#!/bin/sh
|
|
|
|
mkdir -p build
|
|
cd build
|
|
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_EXPORT_COMPILE_COMMANDS=true ..
|
|
make
|