Skip to content

Commit

Permalink
fix if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jason committed Aug 9, 2024
1 parent daedc52 commit 8ecfdf1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,9 @@ foreach option, state: enabled_options
summary_reference += {option: false}
if not get_option('lcm_enable_tests').disabled()
summary_reference += {'- Build unit tests errors(s)': 'Unit tests are currently unsupported!'}
else
summary_reference += {'- Build unit tests errors(s)': 'Meson configured with -Dlcm_enable_tests=disabled'}
endif
summary_reference += {'- Build unit tests errors(s)': 'Meson configured with -Dlcm_enable_tests=disabled'}
else
summary_reference += {option: not state.disabled()}
endif
Expand Down

0 comments on commit 8ecfdf1

Please sign in to comment.