codereport / jsource

J Language Source Code. Livestream links ⬇️
https://www.youtube.com/playlist?list=PLVFrD1dmDdvfVhYLU_iKkV67X9XqCJLWe
Other
38 stars 20 forks source link

Hard coded path to doxygen/xml/index.xml #158

Closed Sebanisu closed 3 years ago

Sebanisu commented 3 years ago

image

I found it in the conf.py

breathe_projects = { 'j' : '/home/cph/jsource/build/docs/doxygen/xml'}

I'm thinking this is set correctly in CMakeLists.txt. So should be a way to import the variable into conf.py.

set(DOXYGEN_OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/doxygen)
set(DOXYGEN_INDEX_FILE ${DOXYGEN_OUTPUT_DIR}/xml/index.xml)
Sebanisu commented 3 years ago

Locally I changed this to a relative path in conf.py. and that seemed to work. Will do a pull request.