Skip to content

Commit

Permalink
Merge pull request #767 from skliper/fix766-add-table-path
Browse files Browse the repository at this point in the history
Fix #766, Add to table search path
  • Loading branch information
astrogeco authored Jul 8, 2020
2 parents 53d35e5 + f141878 commit 4bb29b7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmake/arch_build.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ function(add_cfe_tables APP_NAME TBL_SRC_FILES)
set(TBL_SRC "${MISSION_DEFS}/tables/${TBLWE}.c")
elseif (EXISTS "${MISSION_SOURCE_DIR}/tables/${TBLWE}.c")
set(TBL_SRC "${MISSION_SOURCE_DIR}/tables/${TBLWE}.c")
elseif (EXISTS "${MISSION_DEFS}/${TGT}/tables/${TBLWE}.c")
set(TBL_SRC "${MISSION_DEFS}/${TGT}/tables/${TBLWE}.c")
elseif (IS_ABSOLUTE "${TBL}")
set(TBL_SRC "${TBL}")
else()
Expand Down

0 comments on commit 4bb29b7

Please sign in to comment.