diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-03-28 12:21:50 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-03-28 12:21:50 -0400 |
| commit | 37d53d4c7557fa9cf94dbbcbd56ee5cac5e820d5 (patch) | |
| tree | 509a9c669bf2679085e27a1ff1b0c95526abf14c /meson.build | |
| parent | ad39af0bcd52eb6fb91644348108eb48aa027f83 (diff) | |
Address review comments
Diffstat (limited to 'meson.build')
| -rw-r--r-- | meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 0c35b0e5..b681f43a 100644 --- a/meson.build +++ b/meson.build @@ -38,8 +38,10 @@ math = cc.find_library('m') git = find_program('git', required: false) a2x = find_program('a2x', required: false) +conf_data = configuration_data() + if gdk_pixbuf.found() - add_project_arguments('-DWITH_GDK_PIXBUF', language : 'c') + conf_data.set('HAVE_GDK_PIXBUF', true) endif if a2x.found() @@ -92,6 +94,7 @@ add_project_arguments('-DSWAY_VERSION=@0@'.format(version), language: 'c') sway_inc = include_directories('include') +subdir('include') subdir('protocols') subdir('common') subdir('sway') |
