Skip to content

Commit

Permalink
add C99 build option to example users
Browse files Browse the repository at this point in the history
  • Loading branch information
sksat committed May 17, 2024
1 parent 15a7264 commit 53bbabc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/mobc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ cmake_minimum_required(VERSION 3.13)
project(C2A)

# options
# C2A 全体を C99 としてビルドするかどうか
option(C2A_BUILD_AS_C99 "Build C2A as C99" OFF)

# SCI COM for connection to WINGS TMTC IF
# !!!注意!!!
# これをONにした状態で,SCIの受け口がない場合(TMTC IFが動いてない状態)
Expand Down
3 changes: 3 additions & 0 deletions examples/subobc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ cmake_minimum_required(VERSION 3.13)
project(C2A)

# options
# C2A 全体を C99 としてビルドするかどうか
option(C2A_BUILD_AS_C99 "Build C2A as C99" OFF)

# SCI COM for connection to WINGS TMTC IF
# !!!注意!!!
# これをONにした状態で,SCIの受け口がない場合(TMTC IFが動いてない状態)
Expand Down

0 comments on commit 53bbabc

Please sign in to comment.