1buildType: 2 default: debug 3 choices: 4 debug: 5 short: Debug 6 long: Emit debug information 7 buildType: Debug 8 release: 9 short: Release 10 long: Optimize generated code 11 buildType: RelWithDebInfo 12 13io: 14 default: 'no' 15 choices: 16 'no': 17 short: No IO 18 long: Disable IO extension 19 settings: 20 BOOST_GIL_ENABLE_EXT_IO: no 21 'yes': 22 short: IO 23 long: Enable IO extension 24 settings: 25 BOOST_GIL_ENABLE_EXT_IO: yes 26 27numeric: 28 default: 'no' 29 choices: 30 'no': 31 short: No Numeric 32 long: Disable Numeric extension 33 settings: 34 BOOST_GIL_ENABLE_EXT_NUMERIC: no 35 'yes': 36 short: Numeric 37 long: Enable Numeric extension 38 settings: 39 BOOST_GIL_ENABLE_EXT_NUMERIC: yes 40 41toolbox: 42 default: 'no' 43 choices: 44 'no': 45 short: No Toolbox 46 long: Disable Toolbox extension 47 settings: 48 BOOST_GIL_ENABLE_EXT_TOOLBOX: no 49 'yes': 50 short: Toolbox 51 long: Enable Toolbox extension 52 settings: 53 BOOST_GIL_ENABLE_EXT_TOOLBOX: yes 54 55headers: 56 default: 'no' 57 choices: 58 'no': 59 short: No Header Tests 60 long: Disable header tests extension 61 settings: 62 BOOST_GIL_BUILD_HEADER_TESTS: no 63 'yes': 64 short: Header Tests 65 long: Enable header tests extension 66 settings: 67 BOOST_GIL_BUILD_HEADER_TESTS: yes 68