Documentation: Create build folder in case it does not exist. However, add it to the git repo by placing a .gitignore inside
This commit is contained in:
parent
fa3c980207
commit
4a441a9c44
1
doc/.gitignore
vendored
1
doc/.gitignore
vendored
@ -1 +0,0 @@
|
|||||||
build/*
|
|
@ -28,6 +28,10 @@ release = re.sub('^v', '', os.popen('git describe --always --tags --dirty').read
|
|||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = release
|
version = release
|
||||||
|
|
||||||
|
try:
|
||||||
|
os.mkdir('../build/_doxygen')
|
||||||
|
except FileExistsError:
|
||||||
|
pass
|
||||||
subprocess.call('doxygen Doxyfile.in', shell=True)
|
subprocess.call('doxygen Doxyfile.in', shell=True)
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user