blob: c88e1ebdb97fc6a3966d2897152c79fd670e8806 [file] [log] [blame]
Kuiying Wang642f4372020-08-12 15:35:46 +08001project(
2 'biosconfig-manager',
3 'cpp',
Patrick Williams9ace6ac2023-07-12 11:16:00 -05004 meson_version: '>=1.1.1',
Kuiying Wang642f4372020-08-12 15:35:46 +08005 default_options: [
6 'warning_level=3',
7 'werror=true',
Patrick Williams9ace6ac2023-07-12 11:16:00 -05008 'cpp_std=c++23',
Manojkiran Eda814a3562024-10-03 09:50:04 +05309 'buildtype=debugoptimized',
Kuiying Wang642f4372020-08-12 15:35:46 +080010 ],
11 license: 'Apache-2.0',
12 version: '1.0',
13)
14
15# Wno-psabi reduces the number of "Note:" messages when cross-compiling some STL
16# stuff for ARM. See https://stackoverflow.com/questions/48149323/strange-gcc-warning-when-compiling-qt-project
17# Basically, gcc 6 and gcc 7 are not ABI compatible, but since the whole OpenBMC
18# project uses the same compiler, we can safely ignmore these info notes.
19add_project_arguments('-Wno-psabi', language: 'cpp')
20
Prithvi Pai627c99d2025-02-08 14:05:25 +053021conf_data = configuration_data()
22if (get_option('enable-bios-secureboot').allowed())
23 add_project_arguments('-DENABLE_BIOS_SECUREBOOT', language: 'cpp')
24endif
25configure_file(output: 'configuration.h', configuration: conf_data)
26
Manojkiran Eda814a3562024-10-03 09:50:04 +053027boost_args = [
28 '-DBOOST_ALL_NO_LIB',
29 '-DBOOST_ASIO_DISABLE_THREADS',
30 '-DBOOST_ERROR_CODE_HEADER_ONLY',
31 '-DBOOST_NO_RTTI',
32 '-DBOOST_NO_TYPEID',
33 '-DBOOST_SYSTEM_NO_DEPRECATED',
34]
Kuiying Wang642f4372020-08-12 15:35:46 +080035
Manojkiran Eda814a3562024-10-03 09:50:04 +053036deps = [
37 dependency('boost'),
38 dependency('phosphor-dbus-interfaces'),
39 dependency('phosphor-logging'),
40 dependency('sdbusplus'),
41 dependency('libsystemd'),
42 dependency('openssl'),
43 dependency('nlohmann_json', include_type: 'system'),
Kuiying Wang642f4372020-08-12 15:35:46 +080044]
45
Manojkiran Eda72bed802024-01-24 06:18:48 -060046cereal = dependency('cereal', required: false)
47cpp = meson.get_compiler('cpp')
48has_cereal = cpp.has_header_symbol(
49 'cereal/cereal.hpp',
50 'cereal::specialize',
51 dependencies: cereal,
Manojkiran Eda814a3562024-10-03 09:50:04 +053052 required: false,
53)
Manojkiran Eda72bed802024-01-24 06:18:48 -060054if not has_cereal
55 cereal_opts = import('cmake').subproject_options()
Manojkiran Eda9fc9a982024-10-10 06:31:27 +053056 cereal_opts.add_cmake_defines(
57 {'BUILD_TESTS': 'OFF', 'SKIP_PERFORMANCE_COMPARISON': 'ON'},
58 )
Manojkiran Eda72bed802024-01-24 06:18:48 -060059 cereal_proj = import('cmake').subproject(
60 'cereal',
61 options: cereal_opts,
Manojkiran Eda814a3562024-10-03 09:50:04 +053062 required: false,
63 )
Manojkiran Eda72bed802024-01-24 06:18:48 -060064 assert(cereal_proj.found(), 'cereal is required')
65 cereal = cereal_proj.dependency('cereal')
66endif
67deps += cereal
68
Manojkiran Eda814a3562024-10-03 09:50:04 +053069src_files = [
70 'src/main.cpp',
71 'src/manager.cpp',
72 'src/manager_serialize.cpp',
73 'src/password.cpp',
Prithvi Pai627c99d2025-02-08 14:05:25 +053074 'src/secureboot.cpp',
Arun Lal K M1a1dfbd2023-01-17 06:38:19 +000075]
Kuiying Wang642f4372020-08-12 15:35:46 +080076
Manojkiran Eda814a3562024-10-03 09:50:04 +053077executable(
78 'biosconfig-manager',
79 src_files,
80 implicit_include_directories: true,
81 include_directories: ['include'],
82 dependencies: deps,
83 cpp_args: boost_args,
84 install: true,
85 install_dir: get_option('bindir'),
86)
Kuiying Wang8f706212020-12-16 18:59:24 +080087
Kuiying Wang642f4372020-08-12 15:35:46 +080088systemd = dependency('systemd')
George Liu6a7ee5c2021-12-29 13:53:52 +080089systemd_system_unit_dir = systemd.get_variable(
Patrick Williamsae91a562025-07-09 11:27:43 -040090 'systemd_system_unit_dir',
Manojkiran Eda814a3562024-10-03 09:50:04 +053091 pkgconfig_define: ['prefix', get_option('prefix')],
92)
Kuiying Wang642f4372020-08-12 15:35:46 +080093
George Liu628e4aa2023-08-16 13:58:42 +080094fs = import('fs')
95fs.copyfile(
96 'service_files/xyz.openbmc_project.biosconfig_manager.service',
Kuiying Wang642f4372020-08-12 15:35:46 +080097 install: true,
Manojkiran Eda814a3562024-10-03 09:50:04 +053098 install_dir: systemd_system_unit_dir,
Kuiying Wang642f4372020-08-12 15:35:46 +080099)