1avr_ss = ss.source_set() 2avr_ss.add(files('boot.c')) 3avr_ss.add(when: 'CONFIG_AVR_ATMEGA_MCU', if_true: files('atmega.c')) 4avr_ss.add(when: 'CONFIG_ARDUINO', if_true: files('arduino.c')) 5 6hw_arch += {'avr': avr_ss} 7
1avr_ss = ss.source_set() 2avr_ss.add(files('boot.c')) 3avr_ss.add(when: 'CONFIG_AVR_ATMEGA_MCU', if_true: files('atmega.c')) 4avr_ss.add(when: 'CONFIG_ARDUINO', if_true: files('arduino.c')) 5 6hw_arch += {'avr': avr_ss} 7