Skip to content
Snippets Groups Projects
Commit afcdff83 authored by Jan Möbius's avatar Jan Möbius
Browse files

Really fixed help dirs


git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@14283 383ad7c9-94d9-4d36-a494-682f7c89f535
parent 9cfcbc86
No related branches found
No related tags found
No related merge requests found
/*! \page changelog Changelog
- <b>OpenFlipper 1.2 ( 2012.03.23 , 14280 )</b>
- <b>OpenFlipper 1.2 ( 2012.03.23 , 14283 )</b>
- <b>ACG</b>
- DrawMesh
- Fixed crash with some empty meshes
......@@ -209,6 +209,7 @@
- Switched to QWT 6 (and enabled it on mac)
- Use one global doxy file to control the generation of the help files for plugins
- Fixed bug where debug and release qt versions where copied into MacOS bundle causing crashes.
- Fixed install directory of the qt help files
- <b>OpenFlipper 1.1 ( 2011.09.26 , 12468 )</b>
- <b>ACG</b>
......
......@@ -23,7 +23,10 @@ IF (DOXYGEN_FOUND)
# Remove directory with temporary html files after build
add_custom_command(TARGET doc-DeveloperQtHelp POST_BUILD COMMAND ${CMAKE_COMMAND} -E remove_directory ${developer_html_doc_dir})
# On apple we take the whole directory, so we don't need this extra install command
if ( NOT APPLE )
# install the DeveloperQtHelp on install
install(DIRECTORY "${CMAKE_BINARY_DIR}/Build/${ACG_PROJECT_DATADIR}/Help" DESTINATION "${ACG_PROJECT_DATADIR}/Help" )
install(DIRECTORY "${CMAKE_BINARY_DIR}/Build/${ACG_PROJECT_DATADIR}/Help" DESTINATION "${ACG_PROJECT_DATADIR}" )
endif()
ENDIF(DOXYGEN_FOUND)
......@@ -22,8 +22,11 @@ IF (DOXYGEN_FOUND)
# Remove temporary html files after buily
add_custom_command(TARGET doc-UserQtHelp POST_BUILD COMMAND ${CMAKE_COMMAND} -E remove_directory ${user_html_doc_dir})
# On apple we take the whole directory, so we don't need this extra install command
if ( NOT APPLE )
# install the UserHelp on install
# This will also install the plugin User Documentations
install(DIRECTORY "${CMAKE_BINARY_DIR}/Build/${ACG_PROJECT_DATADIR}/Help" DESTINATION "${ACG_PROJECT_DATADIR}/Help" )
install(DIRECTORY "${CMAKE_BINARY_DIR}/Build/${ACG_PROJECT_DATADIR}/Help" DESTINATION "${ACG_PROJECT_DATADIR}" )
endif()
ENDIF(DOXYGEN_FOUND)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment