9 lines
No EOL
193 B
Bash
Executable file
9 lines
No EOL
193 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# By: Melroy van den Berg
|
|
# Description: Only build the documentation
|
|
|
|
mkdir build_docs
|
|
cd build_docs
|
|
echo "INFO: Build Doxygen...";
|
|
cmake -G Ninja -Ddoc=ON ..
|
|
ninja Doxygen |