5 lines
175 B
Bash
Executable file
5 lines
175 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# By: Melroy van den Berg
|
|
# Description: Only build the documentation
|
|
cmake -GNinja -DDOXYGEN=ON -B build_docs
|
|
cmake --build ./build_docs --target Doxygen
|