6 lines
155 B
Bash
Executable File
6 lines
155 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mkdir -p build-tools
|
|
[ -e build-tools/Makefile ] || cmake -DOPTION_TOOLS_ONLY=ON -B build-tools src
|
|
make -C build-tools -j8 VERBOSE=1 || exit 1
|