Skip to content

Commit

Permalink
Fix #55, Moves interface definition to inc
Browse files Browse the repository at this point in the history
  • Loading branch information
chillfig committed Dec 5, 2022
1 parent 8653ba6 commit 67c3891
Show file tree
Hide file tree
Showing 10 changed files with 7 additions and 4 deletions.
7 changes: 3 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
project(CFS_CS C)

include_directories(fsw/src)
include_directories(fsw/mission_inc)
include_directories(fsw/platform_inc)

set(APP_SRC_FILES
fsw/src/cs_cmds.c
fsw/src/cs_table_processing.c
Expand All @@ -20,6 +16,9 @@ set(APP_SRC_FILES
# Create the app module
add_cfe_app(cs ${APP_SRC_FILES})

# This permits direct access to public headers in the fsw/inc dir
target_include_directories(cs PUBLIC fsw/inc)

set(APP_TABLE_FILES
fsw/tables/cs_apptbl.c
fsw/tables/cs_eepromtbl.c
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions unit-test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ target_link_libraries(coverage-cs_internal-stubs ut_core_api_stubs ut_assert)
# Include and expose unit test utilities includes
target_include_directories(coverage-cs_internal-stubs PUBLIC utilities)

# Include and expose fsw/inc and fsw/src includes
target_include_directories(coverage-cs_internal-stubs PUBLIC ../fsw/inc)
target_include_directories(coverage-cs_internal-stubs PUBLIC ../fsw/src)

# Generate a dedicated "testrunner" executable for each test file
# Accomplish this by cycling through all the app's source files, there must be
# a *_tests file for each
Expand Down

0 comments on commit 67c3891

Please sign in to comment.