Merge branch 'dev' of git.shimatta.de:mhu/reflow-oven-control-sw into dev

This commit is contained in:
Mario Hüttel 2020-08-16 12:35:45 +02:00
commit 2f39b5eb69
2 changed files with 4 additions and 1 deletions

1
doc/.gitignore vendored
View File

@ -1 +0,0 @@
build/*

View File

@ -28,6 +28,10 @@ release = re.sub('^v', '', os.popen('git describe --always --tags --dirty').read
# The short X.Y version.
version = release
try:
os.mkdir('../build/_doxygen')
except FileExistsError:
pass
subprocess.call('doxygen Doxyfile.in', shell=True)
# -- General configuration ---------------------------------------------------