From ea1c48d9bb33c6dc28d6d9334c7da3c672ae30bd Mon Sep 17 00:00:00 2001 From: Joseph Hickey Date: Tue, 23 Mar 2021 12:20:51 -0400 Subject: [PATCH] Fix #277, add version file cfe_psp_version.c should have been included in the source list, but was mistakenly omitted in previous PR. --- fsw/shared/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fsw/shared/CMakeLists.txt b/fsw/shared/CMakeLists.txt index b977467c..ac6a08f8 100644 --- a/fsw/shared/CMakeLists.txt +++ b/fsw/shared/CMakeLists.txt @@ -20,13 +20,14 @@ add_library(psp-${CFE_PSP_TARGETNAME}-shared OBJECT src/cfe_psp_module.c src/cfe_psp_port.c src/cfe_psp_ram.c + src/cfe_psp_version.c ) target_compile_definitions(psp-${CFE_SYSTEM_PSPNAME}-shared PRIVATE $ ) -target_include_directories(psp-${CFE_PSP_TARGETNAME}-shared PRIVATE +target_include_directories(psp-${CFE_PSP_TARGETNAME}-shared PRIVATE $ )