Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #2214, add abstract documentation dependency target #2215

Merged
merged 1 commit into from
Dec 6, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions cmake/mission_build.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ function(prepare)
add_custom_target(mission-install COMMAND $(MAKE) install)
add_custom_target(mission-clean COMMAND $(MAKE) clean)
add_custom_target(mission-prebuild)
add_custom_target(doc-prebuild)

# Locate the source location for all the apps found within the target file
# This is done by searching through the list of paths to find a matching name
Expand Down Expand Up @@ -325,8 +326,8 @@ function(prepare)
add_subdirectory(${osal_MISSION_DIR} osal_public_api)
add_subdirectory(${osal_MISSION_DIR}/docs/src ${CMAKE_BINARY_DIR}/docs/osal-apiguide)

add_dependencies(cfe-usersguide osal_public_api_headerlist)
add_dependencies(mission-doc osal_public_api_headerlist)
add_dependencies(cfe-usersguide doc-prebuild)
add_dependencies(mission-doc doc-prebuild)

# Pull in any application-specific mission-scope configuration
# This may include user configuration files such as cfe_mission_cfg.h,
Expand Down Expand Up @@ -484,5 +485,3 @@ function(process_arch TARGETSYSTEM)
add_dependencies(mission-install ${TARGETSYSTEM}-install)

endfunction(process_arch TARGETSYSTEM)