Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. set(doxyfile_in ${CMAKE_SOURCE_DIR}/doc/documentation-config.doxygen.in)
  2. set(doxyfile ${CMAKE_BINARY_DIR}/Doxyfile)
  3.  
  4. configure_file(${doxyfile_in} ${doxyfile} @ONLY)
  5.  
  6. add_custom_target(doc
  7. COMMAND ${DOXYGEN_EXECUTABLE} ${doxyfile}
  8. WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
  9. COMMENT "Generating API documentation with Doxygen"
  10. VERBATIM)
  11.  
  12. add_custom_target(chm
  13. COMMAND chmcmd index.hhp
  14. WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/doc
  15. COMMENT "Generating API documentation with chmcmd"
  16. VERBATIM)
  17.  
  18. Error: Anchor Memory_8cpp.html#a1e349bf268cc8c667b3d264111b6a3c1 undefined; first use Memory_8cpp.html
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement