Skip to content

Commit

Permalink
CodeInspection-cFE, Add .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
astrogeco committed Apr 7, 2021
1 parent 26ffd61 commit a34a27a
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Ignore everything
*

# ...even if they are in subdirectories
!*/

# But not these files...
!.gitignore


# Build Files
!cmake/**/target_config.*
!cmake/target/CMAKELists.txt
!cmake/arch_build.cmake
!cmake/cfe_generated_file.h.in
!cmake/check_header.c.in
!cmake/generate_build_env.cmake
!cmake/generate_git_module_version.cmake
!cmake/global_functions.cmake
!cmake/mission_build.cmake
!cmake/mission_defaults.cmake

!CMakeLists.txt

# cFE-Core
!modules/core_api/fsw/inc/cfe.h
!modules/core_api/fsw/inc/cfe_endian.h
!modules/core_api/fsw/inc/cfe_error.h
!modules/core_api/fsw/inc/cfe_version.h

# ES
!modules/core_api/fsw/inc/cfe_es*
!modules/core_private/fsw/inc/cfe_es*

!modules/es/fsw/**

!modules/es/CMakeLists.txt


# ResourceID

!modules/core_api/fsw/inc/cfe_resourceid*

!modules/core_private/fsw/inc/cfe_core_resourceid_basevalues.h

!modules/resourceid/fsw/src/*
!modules/resourceid/option_inc/*
!modules/resourceid/CMakeLists.txt
!modules/resourceid/mission_build.cmake

0 comments on commit a34a27a

Please sign in to comment.