Brandon Kim | dab96f1 | 2021-02-18 11:21:37 -0800 | [diff] [blame] | 1 | # 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 III | 8745c95 | 2021-02-08 15:48:53 -0800 | [diff] [blame] | 15 | project( |
| 16 | 'google-misc', |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 17 | 'c', |
William A. Kennington III | 8745c95 | 2021-02-08 15:48:53 -0800 | [diff] [blame] | 18 | version: '0.1', |
| 19 | meson_version: '>=0.53.2', |
| 20 | default_options: [ |
| 21 | 'warning_level=3', |
| 22 | 'werror=true', |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 23 | 'cpp_std=c++17', |
| 24 | 'c_std=c18', |
| 25 | 'tests=' + (meson.is_subproject() ? 'disabled' : 'auto'), |
William A. Kennington III | 8745c95 | 2021-02-08 15:48:53 -0800 | [diff] [blame] | 26 | ]) |
William A. Kennington III | ab79d7d | 2021-02-08 17:28:09 -0800 | [diff] [blame] | 27 | |
| 28 | # Dummy file to make code coverage happy |
| 29 | executable('hello', 'hello.c') |
| 30 | |
| 31 | # Meson has no feature option to str... |
| 32 | tests_str = get_option('tests').enabled() ? 'enabled' : 'disabled' |
| 33 | if get_option('tests').auto() |
| 34 | tests_str = 'auto' |
| 35 | endif |
William A. Kennington III | 7d6fa42 | 2021-02-08 17:04:02 -0800 | [diff] [blame] | 36 | |
William A. Kennington III | 1285115 | 2021-03-17 17:48:32 -0700 | [diff] [blame] | 37 | subproject('acpi-power-state-daemon') |
William A. Kennington III | 7d6fa42 | 2021-02-08 17:04:02 -0800 | [diff] [blame] | 38 | subproject('ncsid', default_options: 'tests=' + tests_str) |
Sui Chen | 03eba28 | 2021-02-11 11:35:56 -0800 | [diff] [blame] | 39 | subproject('metrics-ipmi-blobs', default_options: 'tests=' + tests_str) |
Nan Zhou | 14fe669 | 2021-06-08 16:35:44 -0700 | [diff] [blame] | 40 | subproject('nemora-postd') |
Nan Zhou | 7a33704 | 2021-07-26 21:05:21 -0700 | [diff] [blame^] | 41 | subproject('libcr51sign') |