Skip to content
Snippets Groups Projects
Select Git revision
  • right_scroll_config
  • ofscreen_lines
  • simple_menu_buttons
  • master default protected
  • rahix/meson-micropython
  • schneider/ecg-plot
  • rahix/proper-sleep
  • rahix/panic
  • genofire/ble-follow-py
  • schneider/ble-stability-new-phy-adv
  • schneider/ble-stability
  • schneider/ble-stability-new-phy
  • add_menu_vibration
  • plaetzchen/ios-workaround
  • blinkisync-as-preload
  • schneider/max30001-pycardium
  • schneider/max30001-epicaridum
  • schneider/max30001
  • schneider/stream-locks
  • schneider/fundamental-test
  • v1.11
  • v1.10
  • v1.9
  • v1.8
  • v1.7
  • v1.6
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0
  • release-1
  • bootloader-v1
  • v0.0
35 results

meson.build

Blame
  • Forked from card10 / firmware
    1840 commits behind the upstream repository.
    meson.build 535 B
    includes = include_directories(
      './Include/',
      '../Include/',
    )
    
    sources = files(
      './Source/board.c',
      '../Source/led.c',
      '../Source/mx25.c',
      '../Source/pb.c',
    )
    
    lib = static_library(
      'board-card10',
      sources,
      include_directories: includes,
      dependencies: periphdriver,
    )
    
    libstdio = static_library(
      'board-stdio',
      '../Source/stdio.c',
      include_directories: includes,
      dependencies: periphdriver,
    )
    
    board_card10 = declare_dependency(
      include_directories: includes,
      link_with: lib,
      link_whole: libstdio,
    )