]> henry.ined.fr Git - .git/commitdiff
Summary: Adding doxygen for Linux only
authorN. Brouard <brouard@ined.fr>
Thu, 9 May 2019 15:04:48 +0000 (15:04 +0000)
committerN. Brouard <brouard@ined.fr>
Thu, 9 May 2019 15:04:48 +0000 (15:04 +0000)
CMakeLists.txt

index f584e05d36389c0e3acc7a9e5b836c0e577df379..cd742f4235761b9a4fba0d6fabfb1316e60edd6e 100644 (file)
@@ -90,6 +90,7 @@ install(FILES "html/doc/mypar.imach" DESTINATION "${DOCDIR}")
 install(FILES "html/doc/data/mydata.txt" DESTINATION "${DOCDIR}/data")
 install(FILES "html/doc/biaspar.imach" DESTINATION "${DOCDIR}")
 install(FILES "html/doc/data1.txt" DESTINATION "${DOCDIR}")
+#not working install(FILES "imach.desktop" DESTINATION "${XDG_APPS_DIR}")
 #install(FILES "html" DESTINATION "${DOCDIR}")
 
 
@@ -242,15 +243,29 @@ ADD_TEST(biaspar  IMaCh-${IMACH_VERSION} html/doc/biaspar.imach )
 #   endif()
 # endif()
 # Add a target to generate API documentation with Doxygen
+option(BUILD_DOC "Build documentation" ON)
 if(UNIX)
   find_package(Doxygen)
-  if(DOXYGEN_FOUND)
-    configure_file(${CMAKE_CURRENT_SOURCE_DIR}/latex/Doxyfile.in
-      ${CMAKE_CURRENT_BINARY_DIR}/latex/Doxyfile @ONLY)
-    add_custom_target(doc
-      ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/latex/Doxyfile
-      WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/latex
-      COMMENT "Generating IMaCh documentation with Doxygen" VERBATIM
-      )
-  endif()
-endif()
+  if(DOXYGEN_FOUND)# set input and output files
+    #set(DOXYGEN_IN ${CMAKE_CURRENT_SOURCE_DIR}/../docs/Doxyfile.in) ~/Documents/imach/cvs/imach/latex/Doxyfile.in
+    set(DOXYGEN_IN ${CMAKE_CURRENT_SOURCE_DIR}/latex/Doxyfile.in)
+    set(DOXYGEN_OUT ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
+
+    # request to configure the file
+    configure_file(${DOXYGEN_IN} ${DOXYGEN_OUT} @ONLY)
+    message("Doxygen build started")
+
+    # note the option ALL which allows to build the docs together with the application
+    add_custom_target( doc_doxygen ALL
+      COMMAND ${DOXYGEN_EXECUTABLE} ${DOXYGEN_OUT}
+      WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
+      COMMENT "Generating API documentation with Doxygen in gnulinux/html/index.html"
+      VERBATIM )
+    install(DIRECTORY ${CMAKE_BINARY_DIR}/html 
+      DESTINATION share/doc/${CMAKE_PROJECT_NAME})
+  else (DOXYGEN_FOUND)
+    message("Doxygen need to be installed to generate the doxygen documentation")
+  endif (DOXYGEN_FOUND)
+else (UNIX)
+  message("Doxygen only in UNIX doxygen documentation")
+endif (UNIX)
\ No newline at end of file