diff options
author | Adam Jackson <ajax@redhat.com> | 2018-01-30 16:34:37 -0500 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2018-01-30 16:46:29 -0500 |
commit | 627f4f40abb51a927ed91d9e8b45630d006886c2 (patch) | |
tree | 3f20ab97e0c8d3dc345537fd6c7415ba20369190 /meson_options.txt | |
parent | 9d14a8fade032eddc7149cec988d63f3d6fbe08f (diff) |
Add a meson build system
Builds on the work Dylan Baker did for glproto. Note that this does
not produce _quite_ identical pc files as the autotools build, but it
only affects the name and description strings which are only informative
anyway.
Just to be petty:
% time ( ./configure --prefix=/tmp/xorgproto && make install; ) >& /dev/null
2.42s user 1.67s system 107% cpu 3.804 total
% time ( meson setup build && meson configure build -Dprefix=/tmp/xorgproto && ninja -C build install ) >& /dev/null
0.55s user 0.11s system 100% cpu 0.658 total
Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt new file mode 100644 index 0000000..757cd72 --- /dev/null +++ b/meson_options.txt @@ -0,0 +1 @@ +option('legacy', type: 'boolean', value: false) |