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 #2320, reorganize headers #2321

Merged
merged 11 commits into from
May 4, 2023
7 changes: 6 additions & 1 deletion cmake/mission_build.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,12 @@ function(prepare)
"${psp_MISSION_DIR}/psp/fsw/inc/*.h"
)
foreach(MODULE core_api ${MISSION_CORE_MODULES})
list(APPEND SUBMODULE_HEADER_PATHS "${${MODULE}_MISSION_DIR}/fsw/inc/*.h")
if (IS_DIRECTORY "${${MODULE}_MISSION_DIR}/fsw/inc")
list(APPEND SUBMODULE_HEADER_PATHS "${${MODULE}_MISSION_DIR}/fsw/inc/*.h")
endif()
if (IS_DIRECTORY "${${MODULE}_MISSION_DIR}/config")
list(APPEND SUBMODULE_HEADER_PATHS "${${MODULE}_MISSION_DIR}/config/default_*.h")
endif()
endforeach()
file(GLOB MISSION_USERGUIDE_HEADERFILES
${SUBMODULE_HEADER_PATHS}
Expand Down
131 changes: 0 additions & 131 deletions cmake/sample_defs/cpu1_msgids.h

This file was deleted.

Loading