meson.build 215 B

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