Skip to content

Commit

Permalink
Revert changes to #372 (#374)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbarton authored Dec 5, 2024
1 parent 607ee77 commit e84d4aa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ sphinx:
builder: html

build:
os: "ubuntu-24.04"
os: "ubuntu-22.04"
tools:
python: "3.11"
apt_packages:
- clang-18
- clang-13
- cmake
- libclang-18-dev
- llvm-18-dev
- llvm-18-tools
- libclang-13-dev
- llvm-13-dev
- llvm-13-tools
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
html_extra_path = [CPPINTEROP_ROOT + '/build/docs/']

import subprocess
command = 'mkdir {0}/build; cd {0}/build; cmake ../ -DClang_DIR=/usr/lib/llvm-18/lib/cmake/clang \
-DLLVM_DIR=/usr/lib/llvm-18/lib/cmake/llvm -DCPPINTEROP_ENABLE_DOXYGEN=ON \
command = 'mkdir {0}/build; cd {0}/build; cmake ../ -DClang_DIR=/usr/lib/llvm-13/build/lib/cmake/clang\
-DLLVM_DIR=/usr/lib/llvm-13/build/lib/cmake/llvm -DCPPINTEROP_ENABLE_DOXYGEN=ON\
-DCPPINTEROP_INCLUDE_DOCS=ON'.format(CPPINTEROP_ROOT)
subprocess.call(command, shell=True)
subprocess.call('doxygen {0}/build/docs/doxygen.cfg'.format(CPPINTEROP_ROOT), shell=True)

0 comments on commit e84d4aa

Please sign in to comment.