summaryrefslogtreecommitdiff
path: root/meson.build
blob: 8b2bfbce0c311f853833b5809192a2b348c4f3d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
project(
  'camicro', 'c',
  version : '0.1',
  license: 'GPLv3+',
  default_options: [
    'optimization=3',
    'werror=true',
  ],
)

cc = meson.get_compiler('c')
add_project_arguments(
  cc.get_supported_arguments(['-Wall']),
  language : 'c',
)

gnome = import('gnome')

libusb = dependency('libusb-1.0')
libpng = dependency('libpng16')
gtk = dependency('gtk+-3.0')

subdir('data')
subdir('src')

meson.add_install_script('meson_post_install.py')