diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2024-11-20 16:05:05 +0200 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2024-11-26 16:33:56 +0200 |
commit | fd77d8d38d899ca40d090344582f3ec816fd0591 (patch) | |
tree | 2dc24eec8aa009bb8cac167d2de59bc13f88ac5c /meson.build | |
parent | 7dd7d94968d1ac2edae62c4b1797407ea8640e3c (diff) |
app: Move build to meson and replace agl-shell-desktop
This is a bigger change to move the from Cmake to meson and
use gPRC instead of agl-shell-desktop protocol.
Bug-AGL: SPEC-5300, SPEC-5301
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: Ib649b7fd38eef5653bc401a8eb159882a2f41e6b
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..0d36cd9 --- /dev/null +++ b/meson.build @@ -0,0 +1,30 @@ +# +# Copyright 2024 Collabora, Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +project('cluster-receiver', + 'c', 'cpp', + version: '0.0.1', + default_options: [ + 'warning_level=3', + 'werror=true', + 'c_std=c2x', + 'cpp_std=c++20' + ], + meson_version: '>= 1.0', + license: 'MIT/Expat', +) + +subdir('app') |