COIN-OR::LEMON - Graph Library

Changeset 1251:218171dc022d in lemon for doc


Ignore:
Timestamp:
08/05/13 14:21:58 (11 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Children:
1252:38c432e01489, 1254:c5cd8960df74
Phase:
public
Message:

Doxygen config improvements (#459)

  • remove an erroneous line from DoxygenLayout?.xml
  • libstdc++ doxygen tagfile version is configurable
  • use fixed gcc doc version (4.7.3) instead of the latest one
Location:
doc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • doc/CMakeLists.txt

    r1221 r1251  
    77SET(LEMON_DOC_USE_MATHJAX "NO" CACHE STRING "Use MathJax to display math formulae (YES/NO).")
    88SET(LEMON_DOC_MATHJAX_RELPATH "http://www.mathjax.org/mathjax" CACHE STRING "MathJax library location.")
     9
     10SET(LEMON_DOC_LIBSTDC++_URL
     11  "http://gcc.gnu.org/onlinedocs/gcc-4.7.3/libstdc++/api"
     12  CACHE STRING "GCC libstdc++ doxygen doc url.")
     13
    914
    1015CONFIGURE_FILE(
     
    7681IF(WGET_FOUND)
    7782ADD_CUSTOM_TARGET(update-external-tags
    78   COMMAND ${WGET_EXECUTABLE} -N http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/libstdc++.tag
     83  COMMAND ${WGET_EXECUTABLE} -N ${LEMON_DOC_LIBSTDC++_URL}/libstdc++.tag
    7984  WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
    8085  )
  • doc/Doxyfile.in

    r1250 r1251  
    254254# Configuration::additions related to external references
    255255#---------------------------------------------------------------------------
    256 TAGFILES               = "@abs_top_builddir@/doc/libstdc++.tag = http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/  "
     256TAGFILES               = "@abs_top_builddir@/doc/libstdc++.tag = @LEMON_DOC_LIBSTDC++_URL@"
    257257GENERATE_TAGFILE       = html/lemon.tag
    258258ALLEXTERNALS           = NO
  • doc/DoxygenLayout.xml

    r1036 r1251  
    1818      <tab type="globals" visible="yes" title="" intro=""/>
    1919    </tab>
    20     <tab type="dirs" visible="yes" title="" intro=""/>
    2120    <tab type="examples" visible="yes" title="" intro=""/>
    2221    <tab type="pages" visible="yes" title="" intro=""/>
Note: See TracChangeset for help on using the changeset viewer.