File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 20
20
- name : Install documentation dependencies
21
21
run : |
22
22
sudo apt install opencl-c-headers ocl-icd-opencl-dev doxygen
23
+ pip3 install --upgrade setuptools build
23
24
pip3 install -U -r $GITHUB_WORKSPACE/doc/requirements.txt
24
25
pip3 install -U --ignore-installed $GITHUB_WORKSPACE
25
26
Original file line number Diff line number Diff line change 25
25
26
26
breathe_projects = { 'pocky' : './doxygen/xml' }
27
27
breathe_default_project = 'pocky'
28
- breathe_domain_by_extension = { 'h' : 'c' , 'cl' : 'c' }
28
+ breathe_domain_by_extension = { 'h' : 'c' }
29
29
breathe_implementation_filename_extensions = ['c' ]
30
30
breathe_show_define_initializer = True
31
31
breathe_show_enumvalue_initializer = True
32
32
breathe_separate_member_pages = False
33
33
34
34
stdin = textwrap .dedent (f'''\
35
35
OUTPUT_LANGUAGE = English
36
- EXTENSION_MAPPING = h=C cl=C
37
- EXCLUDE_PATTERNS += *.txt *.c *.py
38
- INPUT = { root_dir } /src/ext
36
+ EXTENSION_MAPPING = h=C
37
+ INPUT = { root_dir } /src/pocky/ext
39
38
RECURSIVE = YES
40
39
QUIET = YES
41
40
PREDEFINED += DOXYGEN_SHOULD_SKIP_THIS
47
46
'rootFileName' : 'lowlevel.rst' , 'rootFileTitle' : 'Low-level C API' ,
48
47
'createTreeView' : True , 'exhaleExecutesDoxygen' : True ,
49
48
'contentsDirectives' : False , 'doxygenStripFromPath' : root_dir ,
50
- 'lexerMapping' : { r'.*\.h' : 'c' , r'.*\.cl' : 'c' },
49
+ 'lexerMapping' : { r'.*\.h' : 'c' },
51
50
'exhaleDoxygenStdin' : stdin }
52
51
53
52
smartquotes = True
You can’t perform that action at this time.
0 commit comments