mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
10 lines
208 B
Bash
Executable File
10 lines
208 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Run doxygen for qucs
|
|
# TODO create doxygen files for the other qucs-tools
|
|
|
|
VERSION=$(cat ../../VERSION)
|
|
sed "s/0\.\0\.18/${VERSION}/g" doxygen.cfg > temp
|
|
mv temp doxygen.cfg
|
|
doxygen doxygen.cfg
|