2019-05-16 16:17:59 +02:00
|
|
|
# Generate documentation
|
|
|
|
|
|
|
|
option(BUILD_DEVELOPER_DOCS "Include developer documentation" OFF)
|
2019-05-21 12:04:26 +02:00
|
|
|
add_feature_info("Include developer documentation" BUILD_DEVELOPER_DOCS "")
|
2019-05-16 16:17:59 +02:00
|
|
|
|
2020-02-20 16:46:55 +01:00
|
|
|
function(_find_all_includes _ret_includes _ret_framework_paths)
|
|
|
|
set(_all_includes "${PROJECT_SOURCE_DIR}/src/plugins;${PROJECT_SOURCE_DIR}/src/libs")
|
|
|
|
foreach(_target ${__QTC_PLUGINS} ${__QTC_LIBRARIES})
|
|
|
|
if (NOT TARGET ${_target})
|
|
|
|
continue()
|
|
|
|
endif()
|
|
|
|
get_target_property(_includes ${_target} INCLUDE_DIRECTORIES)
|
|
|
|
foreach(_include ${_includes})
|
|
|
|
string(FIND "${_include}" "/src/plugins/" _in_plugins)
|
|
|
|
string(FIND "${_include}" "/src/libs/" _in_libs)
|
|
|
|
string(FIND "${_include}" "${CMAKE_BINARY_DIR}" _in_build)
|
|
|
|
if(_in_plugins LESS 0 AND _in_libs LESS 0 AND _in_build LESS 0)
|
|
|
|
list(APPEND _all_includes ${_include})
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endforeach()
|
|
|
|
list(APPEND _all_includes ${CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES})
|
|
|
|
list(REMOVE_DUPLICATES _all_includes)
|
|
|
|
set("${_ret_includes}" "${_all_includes}" PARENT_SCOPE)
|
|
|
|
|
|
|
|
# framework path
|
|
|
|
if (APPLE)
|
|
|
|
get_target_property(_qt_target Qt5::Core LOCATION) # <fw_path>/QtCore.framework/QtCore
|
|
|
|
get_filename_component(_qt_loc "${_qt_target}" DIRECTORY)
|
|
|
|
set("${_ret_framework_paths}" "${_qt_loc}/.." PARENT_SCOPE)
|
|
|
|
endif()
|
|
|
|
endfunction()
|
2019-05-16 16:17:59 +02:00
|
|
|
|
2020-05-19 09:42:44 +02:00
|
|
|
if (WITH_DOCS)
|
2020-10-27 13:28:37 +01:00
|
|
|
add_qtc_documentation(${IDE_DOC_FILE})
|
2020-05-19 09:42:44 +02:00
|
|
|
if (BUILD_DEVELOPER_DOCS)
|
|
|
|
_find_all_includes(_all_includes _framework_paths)
|
|
|
|
add_qtc_documentation("qtcreatordev/qtcreator-dev.qdocconf"
|
|
|
|
INCLUDE_DIRECTORIES ${_all_includes}
|
|
|
|
FRAMEWORK_PATHS ${_framework_paths}
|
2020-02-20 16:46:55 +01:00
|
|
|
)
|
|
|
|
endif()
|
2020-05-19 09:42:44 +02:00
|
|
|
endif()
|
|
|
|
if(WITH_ONLINE_DOCS)
|
2020-10-27 13:28:37 +01:00
|
|
|
add_qtc_documentation(${IDE_DOC_FILE_ONLINE})
|
2020-05-19 09:42:44 +02:00
|
|
|
if (BUILD_DEVELOPER_DOCS)
|
|
|
|
_find_all_includes(_all_includes _framework_paths)
|
|
|
|
add_qtc_documentation("qtcreatordev/qtcreator-dev-online.qdocconf"
|
|
|
|
INCLUDE_DIRECTORIES ${_all_includes}
|
|
|
|
FRAMEWORK_PATHS ${_framework_paths}
|
|
|
|
)
|
2019-05-16 16:17:59 +02:00
|
|
|
endif()
|
|
|
|
endif()
|
2020-05-19 09:42:44 +02:00
|
|
|
|
|
|
|
install(DIRECTORY config
|
2021-03-23 17:54:06 +01:00
|
|
|
DESTINATION ${IDE_HEADER_INSTALL_PATH}/doc
|
2020-05-19 09:42:44 +02:00
|
|
|
COMPONENT Devel
|
|
|
|
EXCLUDE_FROM_ALL
|
|
|
|
)
|