Skip to content

Commit

Permalink
Merge pull request #56 from chillfig/inc
Browse files Browse the repository at this point in the history
Fix #55, Moves interface definition files to inc
  • Loading branch information
dzbaker authored Dec 22, 2022
2 parents 8653ba6 + e3cc712 commit 6492df2
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 5 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 directory
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: 3 additions & 1 deletion unit-test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ add_cfe_coverage_stubs("cs_internal"
# Link with the cfe core stubs and unit test assert libs
target_link_libraries(coverage-cs_internal-stubs ut_core_api_stubs ut_assert)

# Include and expose unit test utilities includes
# Include and expose unit test utilities, fsw/inc, and fsw/src includes
target_include_directories(coverage-cs_internal-stubs PUBLIC utilities)
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
Expand Down

0 comments on commit 6492df2

Please sign in to comment.