blob: 1b989ae80a9b587b4aaee373d83917a7f98d4317 [file] [log] [blame]
Brandon Kim554fad02022-05-15 15:41:05 -07001project(
2 'bios-bmc-smm-error-logger',
3 'cpp',
4 version: '0.1',
5 meson_version: '>=0.57.0',
6 default_options: [
7 'cpp_std=c++20',
8 'warning_level=3',
9 'werror=true',
10 ])
11
Brandon Kim55dcada2022-03-09 02:18:01 -080012root_inc = include_directories('.')
13bios_bmc_smm_error_logger_inc = include_directories('include')
kasunatha1a69f12022-05-27 14:31:38 -070014rde_inc = include_directories('include')
Brandon Kim55dcada2022-03-09 02:18:01 -080015
Brandon Kim554fad02022-05-15 15:41:05 -070016subdir('src')
kasunatha1a69f12022-05-27 14:31:38 -070017subdir('src/rde')
Brandon Kim55dcada2022-03-09 02:18:01 -080018if not get_option('tests').disabled()
19 subdir('test')
20endif
Brandon Kimb6389b92022-03-09 02:32:18 -080021
22# installation of systemd service files
23subdir('service_files')