File tree 3 files changed +10
-4
lines changed
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ INPUT = ../include/xsimd/types/xsimd_api.hpp \
6
6
../include/xsimd/config/xsimd_config.hpp \
7
7
../include/xsimd/memory/xsimd_alignment.hpp \
8
8
../include/xsimd/memory/xsimd_aligned_allocator.hpp \
9
- \
10
9
../include/xsimd/types/xsimd_generic_arch.hpp \
11
10
../include/xsimd/types/xsimd_avx2_register.hpp \
12
11
../include/xsimd/types/xsimd_avx512bw_register.hpp \
Original file line number Diff line number Diff line change @@ -4,5 +4,5 @@ channels:
4
4
- conda-forge
5
5
6
6
dependencies :
7
- - breathe==4.25.1
8
- - doxygen==1.9.1
7
+ - breathe
8
+ # - docutils<0.17
Original file line number Diff line number Diff line change 4
4
import os
5
5
import subprocess
6
6
7
+ on_rtd = os .environ .get ('READTHEDOCS' , None ) == 'True'
8
+
9
+ if on_rtd :
10
+ subprocess .call ('cd ..; doxygen' , shell = True )
11
+
7
12
import sphinx_rtd_theme
8
13
9
14
html_theme = "sphinx_rtd_theme"
10
-
11
15
html_theme_path = [sphinx_rtd_theme .get_html_theme_path ()]
12
16
17
+ def setup (app ):
18
+ app .add_css_file ("main_stylesheet.css" )
19
+
13
20
extensions = ['breathe' ]
14
21
breathe_projects = { 'xsimd' : '../xml' }
15
22
templates_path = ['_templates' ]
You can’t perform that action at this time.
0 commit comments