diff options
-rw-r--r-- | Doxyfile.in | 2 | ||||
-rw-r--r-- | pugl/pugl.h | 6 | ||||
-rw-r--r-- | wscript | 4 |
3 files changed, 4 insertions, 8 deletions
diff --git a/Doxyfile.in b/Doxyfile.in index 59e3331..bbd2f0b 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -780,7 +780,7 @@ WARN_LOGFILE = # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. -INPUT = pugl +INPUT = @PUGL_SRCDIR@/pugl # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses diff --git a/pugl/pugl.h b/pugl/pugl.h index 145f346..01b7f01 100644 --- a/pugl/pugl.h +++ b/pugl/pugl.h @@ -473,9 +473,6 @@ puglInitContextType(PuglView* view, PuglContextType type); /** @} -*/ - -/** @name Windows Functions for creating and managing a visible window for a view. @{ @@ -574,9 +571,6 @@ puglLeaveContext(PuglView* view, bool flush); /** @} -*/ - -/** @name Event Handling @{ */ @@ -1,5 +1,6 @@ #!/usr/bin/env python +import os import sys from waflib import Options, TaskGen @@ -175,7 +176,8 @@ def build(bld): target = 'Doxyfile', install_path = '', name = 'Doxyfile', - PUGL_VERSION = PUGL_VERSION) + PUGL_VERSION = PUGL_VERSION, + PUGL_SRCDIR = os.path.abspath(bld.path.srcpath())) bld(features = 'doxygen', doxyfile = 'Doxyfile') |