Skip to content

Commit

Permalink
Fix #1070, patch PSP include directory reference
Browse files Browse the repository at this point in the history
The PSP header files are located in fsw/shared/inc, not fsw/shared.
This corrects the reference.
  • Loading branch information
jphickey committed Jan 6, 2021
1 parent ef5291a commit 6da6a1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/arch_build.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ endfunction(initialize_globals)
function(add_psp_module MOD_NAME MOD_SRC_FILES)

# Include the PSP shared directory so it can get to cfe_psp_module.h
include_directories(${MISSION_SOURCE_DIR}/psp/fsw/shared)
include_directories(${MISSION_SOURCE_DIR}/psp/fsw/shared/inc)
add_definitions(-D_CFE_PSP_MODULE_)

# Create the module
Expand Down

0 comments on commit 6da6a1b

Please sign in to comment.