summaryrefslogtreecommitdiffstats
path: root/meson.build
blob: 347d9ac94df00da74f439db7aff545957fbd4bfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
project(
  'imx6_ddrstat',
  'c',
  version : '0.1',
  default_options : [
    'buildtype=debugoptimized',
    'c_std=gnu11'
  ]
)

executable(
  'imx6_ddrstat',
  'imx6_ddrstat.c',
  link_args : [ '-static' ],
  install : true
)