build+docs: Updating doxygen target
Change-Id: I291a5e08ef5406490e52d876d57db8ee22c84a4b
diff --git a/wscript b/wscript
index 8c23468..5fd177a 100644
--- a/wscript
+++ b/wscript
@@ -228,15 +228,15 @@
# doxygen docs
from waflib.Build import BuildContext
-class doxy (BuildContext):
+class doxy(BuildContext):
cmd = "doxygen"
fun = "doxygen"
-def doxygen (bld):
+def doxygen(bld):
if not bld.env.DOXYGEN:
- bld.fatal ("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
- bld (features="doxygen",
- doxyfile='Doxyfile')
+ bld.fatal("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
+ bld(features="doxygen",
+ doxyfile='docs/doxygen.conf')
# doxygen docs
from waflib.Build import BuildContext