-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix nasa#2320, reorganize TBL header files
Organize TBL header file contents according to the convention
- Loading branch information
Showing
13 changed files
with
1,145 additions
and
463 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
########################################################### | ||
# | ||
# TBL Core Module platform build setup | ||
# | ||
# This file is evaluated as part of the "prepare" stage | ||
# and can be used to set up prerequisites for the build, | ||
# such as generating header files | ||
# | ||
########################################################### | ||
|
||
# The list of header files that control the TBL configuration | ||
set(TBL_PLATFORM_CONFIG_FILE_LIST | ||
cfe_tbl_internal_cfg.h | ||
cfe_tbl_msgids.h | ||
cfe_tbl_platform_cfg.h | ||
) | ||
|
||
if (CFE_EDS_ENABLED_BUILD) | ||
|
||
# In an EDS-based build, msgids come generated from the EDS tool | ||
set(TBL_CFGFILE_SRC_tbl_msgids "${CMAKE_CURRENT_LIST_DIR}/config/cfe_tbl_eds_msg_topicids.h") | ||
|
||
endif(CFE_EDS_ENABLED_BUILD) | ||
|
||
# Create wrappers around the all the config header files | ||
# This makes them individually overridable by the missions, without modifying | ||
# the distribution default copies | ||
foreach(TBL_CFGFILE ${TBL_PLATFORM_CONFIG_FILE_LIST}) | ||
get_filename_component(CFGKEY "${TBL_CFGFILE}" NAME_WE) | ||
if (DEFINED TBL_CFGFILE_SRC_${CFGKEY}) | ||
set(DEFAULT_SOURCE "${TBL_CFGFILE_SRC_${CFGKEY}}") | ||
else() | ||
set(DEFAULT_SOURCE "${CMAKE_CURRENT_LIST_DIR}/config/default_${TBL_CFGFILE}") | ||
endif() | ||
generate_config_includefile( | ||
FILE_NAME "${TBL_CFGFILE}" | ||
FALLBACK_FILE ${DEFAULT_SOURCE} | ||
) | ||
endforeach() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.