Skip to content

Commit

Permalink
Fixes #139, Moves interface definition files to inc
Browse files Browse the repository at this point in the history
  • Loading branch information
chillfig committed Dec 7, 2022
1 parent 9e2ad8c commit 4c1d7ac
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
cmake_minimum_required(VERSION 3.5)
project(CFS_TO_LAB C)

# Include source directory for table use
include_directories(fsw/src)

include_directories(fsw/mission_inc)
include_directories(fsw/platform_inc)
include_directories(${ci_lab_MISSION_DIR}/fsw/platform_inc)
include_directories(${sample_app_MISSION_DIR}/fsw/platform_inc)

aux_source_directory(fsw/src APP_SRC_FILES)

# Create the app module
add_cfe_app(to_lab ${APP_SRC_FILES})

# This permits direct access to public headers in the fsw/inc, fsw/src,
# ci_lab/fsw/inc, and sample_app/fsw/inc directories
target_include_directories(to_lab PUBLIC fsw/inc)
target_include_directories(to_lab PUBLIC fsw/src)
target_include_directories(to_lab PUBLIC ${ci_lab_MISSION_DIR}/fsw/inc)
target_include_directories(to_lab PUBLIC ${sample_app_MISSION_DIR}/fsw/inc)

add_cfe_tables(TO_LAB_Subs fsw/tables/to_lab_sub.c)

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 4c1d7ac

Please sign in to comment.