Skip to content
Snippets Groups Projects
Forked from card10 / firmware
1831 commits behind the upstream repository.
meson.build 425 B
name = 'dual-core0'
executable(
  name + '.elf',
  'main.c',
  dependencies: [libcard10, max32665_startup_core0],
  link_args: [
    '-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
  ],
)

name = 'dual-core1'
executable(
  name + '.elf',
  'core1.c',
  dependencies: [periphdriver, board_card10, max32665_startup_core1],
  link_args: [
    '-Wl,-Map=' + meson.current_build_dir() + '/' + name + '.map',
  ],
)