1 | # Doxyfile 0.1
|
---|
2 |
|
---|
3 | @INCLUDE = common.doxy
|
---|
4 |
|
---|
5 | #---------------------------------------------------------------------------
|
---|
6 | # General configuration options
|
---|
7 | #---------------------------------------------------------------------------
|
---|
8 | PROJECT_NAME = "Mesa GLSL module"
|
---|
9 | #---------------------------------------------------------------------------
|
---|
10 | # configuration options related to the input files
|
---|
11 | #---------------------------------------------------------------------------
|
---|
12 | INPUT = ../src/compiler/glsl/
|
---|
13 | FILE_PATTERNS = *.c *.cpp *.h
|
---|
14 | RECURSIVE = NO
|
---|
15 | EXCLUDE = ../src/compiler/glsl/glsl_lexer.cpp \
|
---|
16 | ../src/compiler/glsl/glsl_parser.cpp \
|
---|
17 | ../src/compiler/glsl/glsl_parser.h
|
---|
18 | EXCLUDE_PATTERNS =
|
---|
19 | #---------------------------------------------------------------------------
|
---|
20 | # configuration options related to the HTML output
|
---|
21 | #---------------------------------------------------------------------------
|
---|
22 | HTML_OUTPUT = glsl
|
---|
23 | #---------------------------------------------------------------------------
|
---|
24 | # Configuration options related to the preprocessor
|
---|
25 | #---------------------------------------------------------------------------
|
---|
26 | ENABLE_PREPROCESSING = YES
|
---|
27 | MACRO_EXPANSION = NO
|
---|
28 | EXPAND_ONLY_PREDEF = NO
|
---|
29 | SEARCH_INCLUDES = YES
|
---|
30 | INCLUDE_PATH =
|
---|
31 | INCLUDE_FILE_PATTERNS =
|
---|
32 | PREDEFINED =
|
---|
33 | EXPAND_AS_DEFINED =
|
---|
34 | SKIP_FUNCTION_MACROS = NO
|
---|
35 | #---------------------------------------------------------------------------
|
---|
36 | # Configuration::addtions related to external references
|
---|
37 | #---------------------------------------------------------------------------
|
---|
38 | TAGFILES =
|
---|
39 | GENERATE_TAGFILE = glsl.tag
|
---|