5 lines
95 B
Bash
Executable file
5 lines
95 B
Bash
Executable file
#!/bin/sh
|
|
|
|
mkdir -p _build
|
|
cmake -S . -B _build -D CMAKE_BUILD_TYPE=Debug
|
|
cmake --build _build
|