Skip to content
Snippets Groups Projects
Select Git revision
  • 393f95a1509bbebd0bc8cc9c534e80321dfc3be4
  • master default protected
  • card10_nickname_fix
  • genofire/ble-card10-timeread
  • schneider/fundamental-test
  • schneider/ble-buffers
  • ios-workarounds
  • schneider/maxim-sdk-update
  • rahix/simple_menu
  • ch3/splashscreen
  • koalo/bhi160-works-but-dirty
  • koalo/wip/i2c-for-python
  • renze/safe_mode
  • renze/hatchery_apps
  • koalo/factory-reset
  • msgctl/gfx_rle
  • msgctl/faultscreen
  • msgctl/textbuffer_api
  • schneider/bonding
  • schneider/bootloader-update-9a0d158
  • schneider/bsec
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0
  • release-1
  • bootloader-v1
  • v0.0
30 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,
    )