Now About Social Code
aboutsummaryrefslogtreecommitdiff
path: root/meson.build
blob: bfefd93f11503d996b5cf3d3fb7baa378ee116d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
project('weegtk',
          version: '0.1.0',
    meson_version: '>= 1.0.0',
  default_options: [ 'warning_level=2', 'werror=false', ],
)

i18n = import('i18n')
gnome = import('gnome')

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

gnome.post_install(
     glib_compile_schemas: true,
    gtk_update_icon_cache: true,
  update_desktop_database: true,
)