Skip to content

Commit

Permalink
Fix meson scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
cschreib committed Aug 19, 2023
1 parent 70fb836 commit 3512937
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions snitch/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ conf_data = configuration_data({
'SNITCH_WITH_SHORTHAND_MACROS' : get_option('with_shorthand_macros').to_int(),
'SNITCH_CONSTEXPR_FLOAT_USE_BITCAST' : get_option('constexpr_float_use_bitcast').to_int(),
'SNITCH_DEFAULT_WITH_COLOR' : get_option('default_with_color').to_int(),
'SNITCH_DECOMPOSE_SUCCESSFUL_ASSERTIONS' : get_option('decompose_successful_assertions').to_int()
'SNITCH_WITH_ALL_REPORTERS' : get_option('with_all_reporters').to_int()
'SNITCH_WITH_TEAMCITY_REPORTER' : get_option('with_teamcity_reporter').to_int()
'SNITCH_DECOMPOSE_SUCCESSFUL_ASSERTIONS' : get_option('decompose_successful_assertions').to_int(),
'SNITCH_WITH_ALL_REPORTERS' : get_option('with_all_reporters').to_int(),
'SNITCH_WITH_TEAMCITY_REPORTER' : get_option('with_teamcity_reporter').to_int(),
'SNITCH_WITH_CATCH2_XML_REPORTER' : get_option('with_catch2_xml_reporter').to_int()
})

Expand Down

0 comments on commit 3512937

Please sign in to comment.