Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 1 | project( |
| 2 | 'bmcweb', |
| 3 | 'cpp', |
| 4 | version: '1.0', |
Ed Tanous | 8dc3ddf | 2024-06-25 13:00:16 -0700 | [diff] [blame] | 5 | meson_version: '>=1.3.0', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 6 | default_options: [ |
| 7 | 'b_lto_mode=default', |
| 8 | 'b_lto_threads=0', |
| 9 | 'b_lto=true', |
| 10 | 'b_ndebug=if-release', |
| 11 | 'buildtype=debugoptimized', |
| 12 | 'cpp_rtti=false', |
Patrick Williams | 921cfcd | 2023-08-23 06:31:07 -0500 | [diff] [blame] | 13 | 'cpp_std=c++23', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 14 | 'warning_level=3', |
| 15 | 'werror=true', |
| 16 | ], |
| 17 | ) |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 18 | |
| 19 | # Project related links |
| 20 | |
| 21 | project_pretty_name = 'bmcweb' |
| 22 | project_url = 'https://github.com/openbmc/' + project_pretty_name |
| 23 | project_issues_url = project_url + '/issues/new' |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 24 | summary('Issues', project_issues_url, section: 'Report Issues') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 25 | |
| 26 | # Validate the c++ Standard |
| 27 | |
Patrick Williams | 921cfcd | 2023-08-23 06:31:07 -0500 | [diff] [blame] | 28 | if get_option('cpp_std') != 'c++23' |
| 29 | error('This project requires c++23 support') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 30 | endif |
| 31 | |
| 32 | # Get compiler and default build type |
| 33 | |
| 34 | cxx = meson.get_compiler('cpp') |
| 35 | build = get_option('buildtype') |
| 36 | optimization = get_option('optimization') |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 37 | summary('Build Type', build, section: 'Build Info') |
| 38 | summary('Optimization', optimization, section: 'Build Info') |
Ed Tanous | 5e34b67 | 2021-02-05 14:21:27 -0800 | [diff] [blame] | 39 | |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 40 | # remove debug information for minsize buildtype |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 41 | if (get_option('buildtype') == 'minsize') |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 42 | add_project_arguments( |
| 43 | ['-fdata-sections', '-ffunction-sections'], |
| 44 | language: 'cpp', |
| 45 | ) |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 46 | add_project_arguments('-DNDEBUG', language: 'cpp') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 47 | endif |
| 48 | |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 49 | if (get_option('dns-resolver') == 'systemd-dbus') |
| 50 | add_project_arguments('-DBMCWEB_DBUS_DNS_RESOLVER', language: 'cpp') |
Ed Tanous | f8ca6d7 | 2022-06-28 12:12:03 -0700 | [diff] [blame] | 51 | endif |
| 52 | |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 53 | # Disable lto when compiling with no optimization |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 54 | if (get_option('optimization') == '0') |
| 55 | add_project_arguments('-fno-lto', language: 'cpp') |
| 56 | message('Disabling lto & its supported features as optimization is disabled') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 57 | endif |
| 58 | |
| 59 | # Include Directories |
| 60 | |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 61 | incdir = include_directories( |
| 62 | 'include', |
| 63 | 'redfish-core/include', |
| 64 | 'redfish-core/lib', |
| 65 | 'http', |
Aushim Nagarkatti | bd1299b | 2024-08-12 17:11:04 -0700 | [diff] [blame] | 66 | ) |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 67 | incdir_cli = include_directories('http', 'include') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 68 | |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 69 | if (get_option('tests').allowed()) |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 70 | summary('unittest', 'NA', section: 'Features') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 71 | endif |
| 72 | |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 73 | # Add compiler arguments |
| 74 | |
Ed Tanous | ade3f09 | 2024-03-13 13:28:36 -0700 | [diff] [blame] | 75 | if (cxx.get_id() == 'clang') |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 76 | if (cxx.version().version_compare('<17.0')) |
| 77 | error('This project requires clang-17 or higher') |
| 78 | endif |
| 79 | add_project_arguments( |
| 80 | '-Weverything', |
| 81 | '-Wformat=2', |
| 82 | '-Wno-c++98-compat-pedantic', |
| 83 | '-Wno-c++98-compat', |
Ed Tanous | 25991f7 | 2024-06-13 18:10:25 -0700 | [diff] [blame] | 84 | '-Wno-c++20-extensions', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 85 | '-Wno-documentation-unknown-command', |
| 86 | '-Wno-documentation', |
| 87 | '-Wno-exit-time-destructors', |
| 88 | '-Wno-global-constructors', |
| 89 | '-Wno-newline-eof', |
| 90 | '-Wno-padded', |
| 91 | '-Wno-shadow', |
| 92 | '-Wno-used-but-marked-unused', |
| 93 | '-Wno-weak-vtables', |
| 94 | '-Wno-switch-enum', |
| 95 | '-Wno-unused-macros', |
| 96 | '-Wno-covered-switch-default', |
Ed Tanous | f88b217 | 2022-04-15 13:55:05 -0700 | [diff] [blame] | 97 | '-Wno-disabled-macro-expansion', |
Ed Tanous | 724985f | 2024-06-05 09:19:06 -0700 | [diff] [blame] | 98 | '-Wno-unneeded-internal-declaration', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 99 | language: 'cpp', |
| 100 | ) |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 101 | endif |
| 102 | |
Ed Tanous | ade3f09 | 2024-03-13 13:28:36 -0700 | [diff] [blame] | 103 | if (cxx.get_id() == 'gcc') |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 104 | if (cxx.version().version_compare('<13.0')) |
| 105 | error('This project requires gcc-13 or higher') |
| 106 | endif |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 107 | |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 108 | add_project_arguments( |
| 109 | '-Wformat=2', |
| 110 | '-Wcast-align', |
| 111 | '-Wconversion', |
| 112 | '-Woverloaded-virtual', |
| 113 | '-Wsign-conversion', |
| 114 | '-Wunused', |
| 115 | '-Wduplicated-cond', |
| 116 | '-Wduplicated-branches', |
| 117 | '-Wlogical-op', |
| 118 | '-Wnull-dereference', |
| 119 | '-Wunused-parameter', |
| 120 | '-Wdouble-promotion', |
| 121 | '-Wshadow', |
| 122 | '-Wno-psabi', |
| 123 | '-Wno-attributes', |
| 124 | language: 'cpp', |
| 125 | ) |
Ed Tanous | c66403c | 2021-09-22 15:28:57 -0700 | [diff] [blame] | 126 | endif |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 127 | |
Ed Tanous | c66403c | 2021-09-22 15:28:57 -0700 | [diff] [blame] | 128 | if (get_option('buildtype') != 'plain') |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 129 | if (get_option('b_lto') == true and get_option('optimization') != '0') |
| 130 | # Reduce the binary size by removing unnecessary |
| 131 | # dynamic symbol table entries |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 132 | |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 133 | add_project_arguments( |
| 134 | cxx.get_supported_arguments( |
| 135 | [ |
| 136 | '-fno-fat-lto-objects', |
| 137 | '-fvisibility=hidden', |
| 138 | '-fvisibility-inlines-hidden', |
| 139 | ], |
| 140 | ), |
| 141 | language: 'cpp', |
| 142 | ) |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 143 | |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 144 | if cxx.has_link_argument('-Wl,--exclude-libs,ALL') |
| 145 | add_project_link_arguments('-Wl,--exclude-libs,ALL', language: 'cpp') |
| 146 | endif |
George Liu | e820493 | 2021-02-01 14:42:49 +0800 | [diff] [blame] | 147 | endif |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 148 | endif |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 149 | # Set Compiler Security flags |
| 150 | |
| 151 | security_flags = [ |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 152 | '-fstack-protector-strong', |
| 153 | '-fPIE', |
| 154 | '-fPIC', |
| 155 | '-D_FORTIFY_SOURCE=2', |
| 156 | '-Wformat', |
| 157 | '-Wformat-security', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 158 | ] |
| 159 | |
| 160 | ## Add security flags for builds of type 'release','debugoptimized' and 'minsize' |
| 161 | |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 162 | if not (get_option('buildtype') == 'plain' |
| 163 | or get_option('buildtype').startswith('debug') |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 164 | ) |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 165 | add_project_arguments( |
| 166 | cxx.get_supported_arguments([security_flags]), |
| 167 | language: 'cpp', |
| 168 | ) |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 169 | endif |
| 170 | |
| 171 | # Boost dependency configuration |
| 172 | |
| 173 | add_project_arguments( |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 174 | cxx.get_supported_arguments( |
| 175 | [ |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 176 | '-DBOOST_ALL_NO_LIB', |
| 177 | '-DBOOST_ALLOW_DEPRECATED_HEADERS', |
| 178 | '-DBOOST_ASIO_DISABLE_THREADS', |
| 179 | '-DBOOST_ASIO_NO_DEPRECATED', |
| 180 | '-DBOOST_ASIO_SEPARATE_COMPILATION', |
| 181 | '-DBOOST_BEAST_SEPARATE_COMPILATION', |
| 182 | '-DBOOST_EXCEPTION_DISABLE', |
| 183 | '-DBOOST_NO_EXCEPTIONS', |
| 184 | '-DBOOST_URL_NO_SOURCE_LOCATION', |
Ed Tanous | f88b217 | 2022-04-15 13:55:05 -0700 | [diff] [blame] | 185 | '-DBOOST_SPIRIT_X3_NO_RTTI', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 186 | '-DJSON_NOEXCEPTION', |
| 187 | '-DOPENSSL_NO_FILENAMES', |
| 188 | '-DSDBUSPLUS_DISABLE_BOOST_COROUTINES', |
| 189 | ], |
| 190 | ), |
| 191 | language: 'cpp', |
| 192 | ) |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 193 | |
| 194 | # Find the dependency modules, if not found use meson wrap to get them |
| 195 | # automatically during the configure step |
Jason M. Bills | ceb8ddc | 2020-11-23 14:38:39 -0800 | [diff] [blame] | 196 | bmcweb_dependencies = [] |
Aushim Nagarkatti | bd1299b | 2024-08-12 17:11:04 -0700 | [diff] [blame] | 197 | bmcweb_cli_dependencies = [] |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 198 | |
Nan Zhou | 8682c5a | 2021-11-13 11:00:07 -0800 | [diff] [blame] | 199 | pam = cxx.find_library('pam', required: true) |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 200 | atomic = cxx.find_library('atomic', required: true) |
Ed Tanous | e792399 | 2023-12-03 14:14:02 -0800 | [diff] [blame] | 201 | bmcweb_dependencies += [pam, atomic] |
| 202 | |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 203 | openssl = dependency('openssl', required: false, version: '>=3.0.0') |
Ed Tanous | e792399 | 2023-12-03 14:14:02 -0800 | [diff] [blame] | 204 | if not openssl.found() or get_option('b_sanitize') != 'none' |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 205 | openssl_proj = subproject( |
| 206 | 'openssl', |
| 207 | required: true, |
| 208 | default_options: ['warning_level=0', 'werror=false'], |
| 209 | ) |
| 210 | openssl = openssl_proj.get_variable('openssl_dep') |
| 211 | openssl = openssl.as_system('system') |
Ed Tanous | e792399 | 2023-12-03 14:14:02 -0800 | [diff] [blame] | 212 | endif |
| 213 | bmcweb_dependencies += [openssl] |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 214 | |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 215 | nghttp2 = dependency('libnghttp2', version: '>=1.52.0', required: false) |
Ed Tanous | fca2cbe | 2021-01-28 14:49:59 -0800 | [diff] [blame] | 216 | if not nghttp2.found() |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 217 | cmake = import('cmake') |
| 218 | opt_var = cmake.subproject_options() |
Ed Tanous | 211cfa4 | 2024-04-17 13:43:14 -0700 | [diff] [blame] | 219 | opt_var.add_cmake_defines( |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 220 | {'ENABLE_LIB_ONLY': true, 'ENABLE_STATIC_LIB': true}, |
Ed Tanous | 211cfa4 | 2024-04-17 13:43:14 -0700 | [diff] [blame] | 221 | ) |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 222 | nghttp2_ex = cmake.subproject('nghttp2', options: opt_var) |
Ed Tanous | 211cfa4 | 2024-04-17 13:43:14 -0700 | [diff] [blame] | 223 | nghttp2 = nghttp2_ex.dependency('nghttp2') |
Ed Tanous | fca2cbe | 2021-01-28 14:49:59 -0800 | [diff] [blame] | 224 | endif |
| 225 | bmcweb_dependencies += nghttp2 |
| 226 | |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 227 | sdbusplus = dependency('sdbusplus', required: false, include_type: 'system') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 228 | if not sdbusplus.found() |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 229 | sdbusplus_proj = subproject('sdbusplus', required: true) |
| 230 | sdbusplus = sdbusplus_proj.get_variable('sdbusplus_dep') |
| 231 | sdbusplus = sdbusplus.as_system('system') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 232 | endif |
Jason M. Bills | ceb8ddc | 2020-11-23 14:38:39 -0800 | [diff] [blame] | 233 | bmcweb_dependencies += sdbusplus |
Aushim Nagarkatti | bd1299b | 2024-08-12 17:11:04 -0700 | [diff] [blame] | 234 | bmcweb_cli_dependencies += sdbusplus |
| 235 | |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 236 | cli11 = dependency('CLI11', required: false, include_type: 'system') |
Aushim Nagarkatti | bd1299b | 2024-08-12 17:11:04 -0700 | [diff] [blame] | 237 | if not cli11.found() |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 238 | cli11_proj = subproject('cli11', required: true) |
| 239 | cli11 = cli11_proj.get_variable('CLI11_dep') |
| 240 | cli11 = cli11.as_system('system') |
Aushim Nagarkatti | bd1299b | 2024-08-12 17:11:04 -0700 | [diff] [blame] | 241 | endif |
| 242 | bmcweb_cli_dependencies += cli11 |
| 243 | |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 244 | |
Ed Tanous | c9374ff | 2023-05-26 09:42:08 -0700 | [diff] [blame] | 245 | tinyxml = dependency( |
| 246 | 'tinyxml2', |
Cody Smith | 3a097b2 | 2022-05-19 14:22:32 -0700 | [diff] [blame] | 247 | include_type: 'system', |
Ed Tanous | c9374ff | 2023-05-26 09:42:08 -0700 | [diff] [blame] | 248 | version: '>=9.0.0', |
Konstantin Aladyshev | 60e299b | 2024-04-03 11:44:51 +0300 | [diff] [blame] | 249 | default_options: ['tests=false'], |
Cody Smith | 3a097b2 | 2022-05-19 14:22:32 -0700 | [diff] [blame] | 250 | ) |
Ed Tanous | c9374ff | 2023-05-26 09:42:08 -0700 | [diff] [blame] | 251 | if not tinyxml.found() |
| 252 | tinyxml_proj = subproject('tinyxml2', required: true) |
| 253 | tinyxml = tinyxml_proj.get_variable('tinyxml_dep') |
| 254 | tinyxml = tinyxml.as_system('system') |
| 255 | endif |
Cody Smith | 3a097b2 | 2022-05-19 14:22:32 -0700 | [diff] [blame] | 256 | bmcweb_dependencies += tinyxml |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 257 | |
| 258 | systemd = dependency('systemd') |
Patrick Williams | 058f54e | 2024-09-03 16:07:55 -0400 | [diff] [blame] | 259 | libsystemd = dependency('libsystemd') |
Ed Tanous | 77dcace | 2024-09-07 16:38:05 -0700 | [diff] [blame] | 260 | add_project_arguments( |
| 261 | '-DLIBSYSTEMD_VERSION=' + libsystemd.version(), |
| 262 | language: 'cpp', |
| 263 | ) |
Ed Tanous | 055713e | 2024-07-17 17:19:36 -0700 | [diff] [blame] | 264 | |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 265 | zlib = dependency('zlib') |
Patrick Williams | 058f54e | 2024-09-03 16:07:55 -0400 | [diff] [blame] | 266 | bmcweb_dependencies += [libsystemd, zlib] |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 267 | |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 268 | nlohmann_json_dep = dependency( |
| 269 | 'nlohmann_json', |
Patrick Williams | 0183e47 | 2024-10-10 12:31:07 -0400 | [diff] [blame^] | 270 | version: '>=3.11.3', |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 271 | include_type: 'system', |
| 272 | ) |
Patrick Williams | dfd5547 | 2023-12-07 11:50:37 -0600 | [diff] [blame] | 273 | bmcweb_dependencies += nlohmann_json_dep |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 274 | |
Carson Labrado | 2b5b4da | 2023-10-18 00:02:10 +0000 | [diff] [blame] | 275 | boost = dependency( |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 276 | 'boost', |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 277 | modules: ['url'], |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 278 | version: '>=1.84.0', |
| 279 | required: false, |
| 280 | include_type: 'system', |
Carson Labrado | 2b5b4da | 2023-10-18 00:02:10 +0000 | [diff] [blame] | 281 | ) |
Ed Tanous | 6fd2955 | 2023-10-04 09:40:14 -0700 | [diff] [blame] | 282 | if boost.found() |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 283 | bmcweb_dependencies += [boost] |
| 284 | bmcweb_cli_dependencies += [boost] |
Ed Tanous | 6fd2955 | 2023-10-04 09:40:14 -0700 | [diff] [blame] | 285 | else |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 286 | cmake = import('cmake') |
| 287 | opt = cmake.subproject_options() |
Ed Tanous | f80a87f | 2024-06-16 12:10:33 -0700 | [diff] [blame] | 288 | boost_libs = [ |
| 289 | 'asio', |
| 290 | 'beast', |
| 291 | 'circular_buffer', |
| 292 | 'callable_traits', |
| 293 | 'headers', |
| 294 | 'process', |
| 295 | 'type_index', |
| 296 | 'url', |
| 297 | 'uuid', |
| 298 | 'spirit', |
| 299 | ] |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 300 | opt.add_cmake_defines( |
| 301 | { |
Ed Tanous | 4ed30a8 | 2024-08-19 11:46:20 -0700 | [diff] [blame] | 302 | # 1.86.0 fails this. Hopefully fixed in 1.86.1 |
| 303 | 'CMAKE_CXX_FLAGS': '-Wno-unused-parameter', |
Ed Tanous | f80a87f | 2024-06-16 12:10:33 -0700 | [diff] [blame] | 304 | 'BOOST_INCLUDE_LIBRARIES': ';'.join(boost_libs), |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 305 | 'BUILD_SHARED_LIBS': 'OFF', |
| 306 | }, |
| 307 | ) |
Ed Tanous | 144983c | 2024-03-28 00:39:10 -0700 | [diff] [blame] | 308 | |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 309 | boost = cmake.subproject('boost', required: true, options: opt) |
Ed Tanous | f80a87f | 2024-06-16 12:10:33 -0700 | [diff] [blame] | 310 | foreach boost_lib : boost_libs |
| 311 | boost_lib_instance = boost.dependency('boost_' + boost_lib).as_system() |
| 312 | bmcweb_dependencies += [boost_lib_instance] |
Aushim Nagarkatti | bd1299b | 2024-08-12 17:11:04 -0700 | [diff] [blame] | 313 | bmcweb_cli_dependencies += [boost_lib_instance] |
Ed Tanous | f80a87f | 2024-06-16 12:10:33 -0700 | [diff] [blame] | 314 | endforeach |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 315 | endif |
| 316 | |
Patrick Williams | 4efe3e0 | 2023-04-12 08:05:58 -0500 | [diff] [blame] | 317 | systemd_system_unit_dir = systemd.get_variable('systemdsystemunitdir') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 318 | |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 319 | bindir = get_option('prefix') + '/' + get_option('bindir') |
Aushim Nagarkatti | bd1299b | 2024-08-12 17:11:04 -0700 | [diff] [blame] | 320 | libexec = get_option('prefix') + '/' + get_option('libexecdir') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 321 | |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 322 | summary( |
| 323 | { |
| 324 | 'prefix': get_option('prefix'), |
| 325 | 'bindir': bindir, |
| 326 | 'systemd unit directory': systemd_system_unit_dir, |
| 327 | }, |
| 328 | section: 'Directories', |
| 329 | ) |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 330 | |
Ed Tanous | a529a6a | 2024-05-29 16:51:37 -0700 | [diff] [blame] | 331 | subdir('static') |
| 332 | subdir('redfish-core') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 333 | |
Nan Zhou | 307386e | 2022-10-12 20:29:34 +0000 | [diff] [blame] | 334 | # Config subdirectory |
Nan Zhou | 307386e | 2022-10-12 20:29:34 +0000 | [diff] [blame] | 335 | subdir('config') |
| 336 | bmcweb_dependencies += conf_h_dep |
Aushim Nagarkatti | bd1299b | 2024-08-12 17:11:04 -0700 | [diff] [blame] | 337 | bmcweb_cli_dependencies += conf_h_dep |
Nan Zhou | 307386e | 2022-10-12 20:29:34 +0000 | [diff] [blame] | 338 | |
Ed Tanous | 02f1cd9 | 2021-10-27 12:09:06 -0700 | [diff] [blame] | 339 | # Source files |
Nan Zhou | 0ad63df | 2022-10-17 23:03:21 +0000 | [diff] [blame] | 340 | fs = import('fs') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 341 | |
Nan Zhou | 0ad63df | 2022-10-17 23:03:21 +0000 | [diff] [blame] | 342 | srcfiles_bmcweb = files( |
Ed Tanous | 724985f | 2024-06-05 09:19:06 -0700 | [diff] [blame] | 343 | 'http/mutual_tls.cpp', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 344 | 'redfish-core/src/error_messages.cpp', |
Ed Tanous | 25991f7 | 2024-06-13 18:10:25 -0700 | [diff] [blame] | 345 | 'redfish-core/src/filter_expr_executor.cpp', |
Ed Tanous | f88b217 | 2022-04-15 13:55:05 -0700 | [diff] [blame] | 346 | 'redfish-core/src/filter_expr_printer.cpp', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 347 | 'redfish-core/src/redfish.cpp', |
| 348 | 'redfish-core/src/registries.cpp', |
| 349 | 'redfish-core/src/utils/dbus_utils.cpp', |
| 350 | 'redfish-core/src/utils/json_utils.cpp', |
| 351 | 'redfish-core/src/utils/time_utils.cpp', |
| 352 | 'src/boost_asio.cpp', |
| 353 | 'src/boost_asio_ssl.cpp', |
| 354 | 'src/boost_beast.cpp', |
| 355 | 'src/dbus_singleton.cpp', |
| 356 | 'src/json_html_serializer.cpp', |
| 357 | 'src/ossl_random.cpp', |
Ed Tanous | 724985f | 2024-06-05 09:19:06 -0700 | [diff] [blame] | 358 | 'src/ssl_key_handler.cpp', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 359 | 'src/webserver_run.cpp', |
Nan Zhou | 0ad63df | 2022-10-17 23:03:21 +0000 | [diff] [blame] | 360 | ) |
Ed Tanous | 02f1cd9 | 2021-10-27 12:09:06 -0700 | [diff] [blame] | 361 | |
Ed Tanous | 42bbcd8 | 2023-01-07 18:04:28 -0800 | [diff] [blame] | 362 | bmcweblib = static_library( |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 363 | 'bmcweblib', |
| 364 | srcfiles_bmcweb, |
| 365 | include_directories: incdir, |
| 366 | dependencies: bmcweb_dependencies, |
Ed Tanous | 42bbcd8 | 2023-01-07 18:04:28 -0800 | [diff] [blame] | 367 | ) |
| 368 | |
Aushim Nagarkatti | bd1299b | 2024-08-12 17:11:04 -0700 | [diff] [blame] | 369 | # Generate the bmcwebd daemon |
Ed Tanous | 02f1cd9 | 2021-10-27 12:09:06 -0700 | [diff] [blame] | 370 | executable( |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 371 | 'bmcwebd', |
| 372 | 'src/webserver_main.cpp', |
| 373 | include_directories: incdir, |
| 374 | dependencies: bmcweb_dependencies, |
| 375 | link_with: bmcweblib, |
| 376 | link_args: '-Wl,--gc-sections', |
| 377 | install: true, |
| 378 | install_dir: libexec, |
Aushim Nagarkatti | bd1299b | 2024-08-12 17:11:04 -0700 | [diff] [blame] | 379 | ) |
| 380 | |
| 381 | # Generate the bmcweb CLI application |
| 382 | executable( |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 383 | 'bmcweb', |
| 384 | ['src/webserver_cli.cpp', 'src/boost_asio.cpp'], |
| 385 | include_directories: incdir_cli, |
| 386 | dependencies: bmcweb_cli_dependencies, |
| 387 | install: true, |
| 388 | install_dir: bindir, |
Ed Tanous | 02f1cd9 | 2021-10-27 12:09:06 -0700 | [diff] [blame] | 389 | ) |
| 390 | |
Nan Zhou | 0ad63df | 2022-10-17 23:03:21 +0000 | [diff] [blame] | 391 | srcfiles_unittest = files( |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 392 | 'test/http/crow_getroutes_test.cpp', |
| 393 | 'test/http/http2_connection_test.cpp', |
| 394 | 'test/http/http_body_test.cpp', |
| 395 | 'test/http/http_connection_test.cpp', |
| 396 | 'test/http/http_response_test.cpp', |
| 397 | 'test/http/mutual_tls.cpp', |
| 398 | 'test/http/mutual_tls_meta.cpp', |
| 399 | 'test/http/parsing_test.cpp', |
| 400 | 'test/http/router_test.cpp', |
| 401 | 'test/http/server_sent_event_test.cpp', |
| 402 | 'test/http/utility_test.cpp', |
| 403 | 'test/http/verb_test.cpp', |
| 404 | 'test/include/async_resolve_test.cpp', |
| 405 | 'test/include/credential_pipe_test.cpp', |
| 406 | 'test/include/dbus_utility_test.cpp', |
| 407 | 'test/include/google/google_service_root_test.cpp', |
| 408 | 'test/include/http_utility_test.cpp', |
| 409 | 'test/include/human_sort_test.cpp', |
| 410 | 'test/include/ibm/configfile_test.cpp', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 411 | 'test/include/json_html_serializer.cpp', |
| 412 | 'test/include/multipart_test.cpp', |
| 413 | 'test/include/openbmc_dbus_rest_test.cpp', |
| 414 | 'test/include/ossl_random.cpp', |
Ed Tanous | 099225c | 2024-03-27 22:03:05 -0700 | [diff] [blame] | 415 | 'test/include/ssl_key_handler_test.cpp', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 416 | 'test/include/str_utility_test.cpp', |
Ed Tanous | d3a48a1 | 2024-09-25 08:58:29 -0700 | [diff] [blame] | 417 | 'test/redfish-core/include/event_matches_filter_test.cpp', |
Ed Tanous | 25991f7 | 2024-06-13 18:10:25 -0700 | [diff] [blame] | 418 | 'test/redfish-core/include/filter_expr_executor_test.cpp', |
Ed Tanous | f88b217 | 2022-04-15 13:55:05 -0700 | [diff] [blame] | 419 | 'test/redfish-core/include/filter_expr_parser_test.cpp', |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame] | 420 | 'test/redfish-core/include/privileges_test.cpp', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 421 | 'test/redfish-core/include/redfish_aggregator_test.cpp', |
| 422 | 'test/redfish-core/include/registries_test.cpp', |
| 423 | 'test/redfish-core/include/utils/dbus_utils.cpp', |
| 424 | 'test/redfish-core/include/utils/hex_utils_test.cpp', |
| 425 | 'test/redfish-core/include/utils/ip_utils_test.cpp', |
| 426 | 'test/redfish-core/include/utils/json_utils_test.cpp', |
Ed Tanous | 15b6f9f | 2024-05-30 09:13:43 -0700 | [diff] [blame] | 427 | 'test/redfish-core/include/redfish_test.cpp', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 428 | 'test/redfish-core/include/utils/query_param_test.cpp', |
Janet Adkins | 1516c21 | 2024-08-14 13:22:41 -0500 | [diff] [blame] | 429 | 'test/redfish-core/include/utils/sensor_utils_test.cpp', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 430 | 'test/redfish-core/include/utils/stl_utils_test.cpp', |
| 431 | 'test/redfish-core/include/utils/time_utils_test.cpp', |
| 432 | 'test/redfish-core/lib/chassis_test.cpp', |
| 433 | 'test/redfish-core/lib/log_services_dump_test.cpp', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 434 | 'test/redfish-core/lib/manager_diagnostic_data_test.cpp', |
Ed Tanous | 8d2f868 | 2024-09-03 17:03:29 -0700 | [diff] [blame] | 435 | 'test/redfish-core/lib/manager_logservices_journal_test.cpp', |
Ed Tanous | 090ab8e | 2024-05-18 16:07:23 -0700 | [diff] [blame] | 436 | 'test/redfish-core/lib/metadata_test.cpp', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 437 | 'test/redfish-core/lib/power_subsystem_test.cpp', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 438 | 'test/redfish-core/lib/service_root_test.cpp', |
| 439 | 'test/redfish-core/lib/system_test.cpp', |
Ed Tanous | 8d2f868 | 2024-09-03 17:03:29 -0700 | [diff] [blame] | 440 | 'test/redfish-core/lib/systems_logservices_postcode.cpp', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 441 | 'test/redfish-core/lib/thermal_subsystem_test.cpp', |
| 442 | 'test/redfish-core/lib/update_service_test.cpp', |
Nan Zhou | 0ad63df | 2022-10-17 23:03:21 +0000 | [diff] [blame] | 443 | ) |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 444 | |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 445 | if (get_option('tests').allowed()) |
Ed Tanous | 77dcace | 2024-09-07 16:38:05 -0700 | [diff] [blame] | 446 | gtest = dependency( |
| 447 | 'gtest_main', |
| 448 | main: true, |
| 449 | version: '>=1.15.0', |
| 450 | required: true, |
| 451 | ) |
| 452 | gmock = dependency('gmock', required: true) |
| 453 | gtestlib = static_library('gtestlib', dependencies: [gtest, gmock]) |
| 454 | gtestdep = declare_dependency( |
| 455 | link_with: gtestlib, |
| 456 | dependencies: [ |
| 457 | gtest.partial_dependency(includes: true), |
| 458 | gmock.partial_dependency(includes: true), |
| 459 | ], |
| 460 | ) |
Ed Tanous | 02f1cd9 | 2021-10-27 12:09:06 -0700 | [diff] [blame] | 461 | # generate the test executable |
Nan Zhou | 0ad63df | 2022-10-17 23:03:21 +0000 | [diff] [blame] | 462 | foreach test_src : srcfiles_unittest |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 463 | test_bin = executable( |
| 464 | fs.stem(test_src), |
| 465 | test_src, |
| 466 | link_with: bmcweblib, |
| 467 | include_directories: incdir, |
| 468 | install_dir: bindir, |
Ed Tanous | 77dcace | 2024-09-07 16:38:05 -0700 | [diff] [blame] | 469 | dependencies: bmcweb_dependencies + [gtestdep], |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 470 | ) |
Ed Tanous | 77dcace | 2024-09-07 16:38:05 -0700 | [diff] [blame] | 471 | test(fs.stem(test_src), test_bin, protocol: 'gtest') |
Nan Zhou | 0ad63df | 2022-10-17 23:03:21 +0000 | [diff] [blame] | 472 | endforeach |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 473 | endif |