blob: b23a085c9edfd65abe7e992851eca8ccb1cfa5e7 [file] [log] [blame]
Brandon Kimdab96f12021-02-18 11:21:37 -08001# Copyright 2021 Google LLC
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
William A. Kennington III8745c952021-02-08 15:48:53 -080015project(
16 'google-misc',
William A. Kennington IIIab79d7d2021-02-08 17:28:09 -080017 'c',
William A. Kennington III8745c952021-02-08 15:48:53 -080018 version: '0.1',
Willy Tu382d6282021-10-21 13:31:14 -070019 meson_version: '>=0.57.0',
William A. Kennington III8745c952021-02-08 15:48:53 -080020 default_options: [
21 'warning_level=3',
22 'werror=true',
Willy Tu382d6282021-10-21 13:31:14 -070023 'cpp_std=c++20',
William A. Kennington IIIab79d7d2021-02-08 17:28:09 -080024 'c_std=c18',
25 'tests=' + (meson.is_subproject() ? 'disabled' : 'auto'),
William A. Kennington III8745c952021-02-08 15:48:53 -080026 ])
William A. Kennington IIIab79d7d2021-02-08 17:28:09 -080027
28# Dummy file to make code coverage happy
29executable('hello', 'hello.c')
30
31# Meson has no feature option to str...
32tests_str = get_option('tests').enabled() ? 'enabled' : 'disabled'
33if get_option('tests').auto()
34 tests_str = 'auto'
35endif
William A. Kennington III7d6fa422021-02-08 17:04:02 -080036
William A. Kennington III12851152021-03-17 17:48:32 -070037subproject('acpi-power-state-daemon')
William A. Kennington III7d6fa422021-02-08 17:04:02 -080038subproject('ncsid', default_options: 'tests=' + tests_str)
Sui Chen03eba282021-02-11 11:35:56 -080039subproject('metrics-ipmi-blobs', default_options: 'tests=' + tests_str)
Nan Zhou14fe6692021-06-08 16:35:44 -070040subproject('nemora-postd')
Nan Zhou7a337042021-07-26 21:05:21 -070041subproject('libcr51sign')