summaryrefslogtreecommitdiff
path: root/fullscreen-shell
diff options
context:
space:
mode:
authorDaniel Stone <daniels@collabora.com>2016-11-24 15:54:51 +0000
committerPekka Paalanen <pq@iki.fi>2018-12-09 14:50:54 +0200
commit8011b0fa0303741ef41f45ce0bf45484d9c5f115 (patch)
treefe272514159d517ff62d7456e38e7425ab670094 /fullscreen-shell
parented75c89fd570a587010b1dbbb2c0a466821ddd06 (diff)
downloadweston-8011b0fa0303741ef41f45ce0bf45484d9c5f115.tar.gz
Add Meson build system
Meson is a build system, currently implemented in Python, with multiple output backends, including Ninja and Make. The build file syntax is clean and easy to read unlike autotools. In practise, configuring and building with Meson and Ninja has been observed to be much faster than with autotools. Also cross-building support is excellent. More information at http://mesonbuild.com Since moving to Meson requires some changes from users in any case, we took this opportunity to revamp build options. Most of the build options still exist, some have changed names or more, and a few have been dropped. The option to choose the Cairo flavour is not implemented since for the longest time the Cairo image backend has been the only recommended one. This Meson build should be fully functional and it installs everything an all-enabled autotools build does. Installed pkg-config files have some minor differences that should be insignificant. Building of some developer documentation that was never installed with autotools is missing. It is expected that the autotools build system will be removed soon after the next Weston release. Signed-off-by: Daniel Stone <daniels@collabora.com> Co-authored-by: Pekka Paalanen <pq@iki.fi> Signed-off-by: Pekka Paalanen <pq@iki.fi>
Diffstat (limited to 'fullscreen-shell')
-rw-r--r--fullscreen-shell/meson.build17
1 files changed, 17 insertions, 0 deletions
diff --git a/fullscreen-shell/meson.build b/fullscreen-shell/meson.build
new file mode 100644
index 00000000..c9ca781a
--- /dev/null
+++ b/fullscreen-shell/meson.build
@@ -0,0 +1,17 @@
+if get_option('shell-fullscreen')
+ srcs_shell_fullscreen = [
+ 'fullscreen-shell.c',
+ '../shared/matrix.c',
+ fullscreen_shell_unstable_v1_server_protocol_h,
+ fullscreen_shell_unstable_v1_protocol_c,
+ ]
+ shared_library(
+ 'fullscreen-shell',
+ srcs_shell_fullscreen,
+ include_directories: include_directories('..', '../shared'),
+ dependencies: dep_libweston,
+ name_prefix: '',
+ install: true,
+ install_dir: dir_module_weston
+ )
+endif