Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make example user C99-Build default #350

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion examples/mobc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ project(C2A)

# options
# C2A 全体を C99 としてビルドするかどうか
option(C2A_BUILD_AS_C99 "Build C2A as C99" OFF)
# c2a-core はまだ引き続き(限定的に)C89 のサポートは行うが、特に事情が無い限り C99 でのビルドを強く推奨する
option(C2A_BUILD_AS_C99 "Build C2A as C99" ON)

# SCI COM for connection to WINGS TMTC IF
# !!!注意!!!
Expand Down
3 changes: 2 additions & 1 deletion examples/subobc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ project(C2A)

# options
# C2A 全体を C99 としてビルドするかどうか
option(C2A_BUILD_AS_C99 "Build C2A as C99" OFF)
# c2a-core はまだ引き続き(限定的に)C89 のサポートは行うが、特に事情が無い限り C99 でのビルドを強く推奨する
option(C2A_BUILD_AS_C99 "Build C2A as C99" ON)

# SCI COM for connection to WINGS TMTC IF
# !!!注意!!!
Expand Down
Loading