Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 1 | project('bmcweb', 'cpp', |
| 2 | version : '1.0', |
Ed Tanous | 6107da1 | 2022-10-25 12:05:02 -0700 | [diff] [blame] | 3 | meson_version: '>=0.63.0', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 4 | default_options: [ |
Manojkiran Eda | cb2ed19 | 2021-02-15 08:30:43 +0530 | [diff] [blame] | 5 | 'b_lto_mode=default', |
Ed Tanous | f523c32 | 2021-12-03 10:46:48 -0800 | [diff] [blame] | 6 | 'b_lto_threads=0', |
| 7 | 'b_lto=true', |
| 8 | 'b_ndebug=if-release', |
| 9 | 'buildtype=debugoptimized', |
| 10 | 'cpp_rtti=false', |
| 11 | 'cpp_std=c++20', |
| 12 | 'warning_level=3', |
| 13 | 'werror=true', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 14 | ]) |
| 15 | |
| 16 | # Project related links |
| 17 | |
| 18 | project_pretty_name = 'bmcweb' |
| 19 | project_url = 'https://github.com/openbmc/' + project_pretty_name |
| 20 | project_issues_url = project_url + '/issues/new' |
| 21 | summary('Issues',project_issues_url, section: 'Report Issues') |
| 22 | |
| 23 | # Validate the c++ Standard |
| 24 | |
Patrick Williams | c52ee72 | 2021-10-06 15:17:42 -0500 | [diff] [blame] | 25 | if get_option('cpp_std') != 'c++20' |
| 26 | error('This project requires c++20 support') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 27 | endif |
| 28 | |
| 29 | # Get compiler and default build type |
| 30 | |
| 31 | cxx = meson.get_compiler('cpp') |
| 32 | build = get_option('buildtype') |
| 33 | optimization = get_option('optimization') |
| 34 | summary('Build Type',build, section : 'Build Info') |
| 35 | summary('Optimization',optimization, section : 'Build Info') |
| 36 | |
Ed Tanous | 5e34b67 | 2021-02-05 14:21:27 -0800 | [diff] [blame] | 37 | |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 38 | # remove debug information for minsize buildtype |
| 39 | if(get_option('buildtype') == 'minsize') |
Ed Tanous | 5e34b67 | 2021-02-05 14:21:27 -0800 | [diff] [blame] | 40 | add_project_arguments(['-fdata-sections', '-ffunction-sections'], language : 'cpp') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 41 | add_project_arguments('-DNDEBUG', language : 'cpp') |
| 42 | endif |
| 43 | |
| 44 | # Disable lto when compiling with no optimization |
| 45 | if(get_option('optimization') == '0') |
| 46 | add_project_arguments('-fno-lto', language: 'cpp') |
| 47 | message('Disabling lto & its supported features as optimization is disabled') |
| 48 | endif |
| 49 | |
| 50 | # Include Directories |
| 51 | |
Ed Tanous | cf2f932 | 2021-09-22 15:34:41 -0700 | [diff] [blame] | 52 | incdir = include_directories( |
| 53 | 'include', |
| 54 | 'redfish-core/include', |
| 55 | 'redfish-core/lib', |
| 56 | 'http' |
| 57 | ) |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 58 | |
| 59 | # Get the options and enable the respective features |
| 60 | ## create a MAP of "options : feature_flag" |
| 61 | |
| 62 | feature_map = { |
Manojkiran Eda | 2d74fbc | 2021-10-28 12:39:49 +0530 | [diff] [blame] | 63 | 'basic-auth' : '-DBMCWEB_ENABLE_BASIC_AUTHENTICATION', |
| 64 | 'cookie-auth' : '-DBMCWEB_ENABLE_COOKIE_AUTHENTICATION', |
| 65 | 'google-api' : '-DBMCWEB_ENABLE_GOOGLE_API', |
| 66 | 'host-serial-socket' : '-DBMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET', |
| 67 | 'ibm-management-console' : '-DBMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE', |
Nan Zhou | a43ea82 | 2022-05-27 00:42:44 +0000 | [diff] [blame] | 68 | 'insecure-disable-auth' : '-DBMCWEB_INSECURE_DISABLE_AUTHX', |
Manojkiran Eda | 2d74fbc | 2021-10-28 12:39:49 +0530 | [diff] [blame] | 69 | 'insecure-disable-csrf' : '-DBMCWEB_INSECURE_DISABLE_CSRF_PREVENTION', |
| 70 | 'insecure-disable-ssl' : '-DBMCWEB_INSECURE_DISABLE_SSL', |
| 71 | 'insecure-push-style-notification' : '-DBMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING', |
| 72 | 'insecure-tftp-update' : '-DBMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE', |
Ed Tanous | 1aa0c2b | 2022-02-08 12:24:30 +0100 | [diff] [blame] | 73 | 'insecure-ignore-content-type' : '-DBMCWEB_INSECURE_IGNORE_CONTENT_TYPE', |
Manojkiran Eda | 2d74fbc | 2021-10-28 12:39:49 +0530 | [diff] [blame] | 74 | 'kvm' : '-DBMCWEB_ENABLE_KVM' , |
| 75 | 'mutual-tls-auth' : '-DBMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION', |
Carson Labrado | 7fb3356 | 2022-04-18 23:26:56 +0000 | [diff] [blame] | 76 | 'redfish-aggregation' : '-DBMCWEB_ENABLE_REDFISH_AGGREGATION', |
Ed Tanous | f523c32 | 2021-12-03 10:46:48 -0800 | [diff] [blame] | 77 | 'redfish-allow-deprecated-power-thermal' : '-DBMCWEB_ALLOW_DEPRECATED_POWER_THERMAL', |
Manojkiran Eda | 2d74fbc | 2021-10-28 12:39:49 +0530 | [diff] [blame] | 78 | 'redfish-bmc-journal' : '-DBMCWEB_ENABLE_REDFISH_BMC_JOURNAL', |
| 79 | 'redfish-cpu-log' : '-DBMCWEB_ENABLE_REDFISH_CPU_LOG', |
| 80 | 'redfish-dbus-log' : '-DBMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES', |
| 81 | 'redfish-dump-log' : '-DBMCWEB_ENABLE_REDFISH_DUMP_LOG', |
Ed Tanous | f523c32 | 2021-12-03 10:46:48 -0800 | [diff] [blame] | 82 | 'redfish-host-logger' : '-DBMCWEB_ENABLE_REDFISH_HOST_LOGGER', |
Manojkiran Eda | 2d74fbc | 2021-10-28 12:39:49 +0530 | [diff] [blame] | 83 | 'redfish-new-powersubsystem-thermalsubsystem' : '-DBMCWEB_NEW_POWERSUBSYSTEM_THERMALSUBSYSTEM', |
Gunnar Mills | 54dce7f | 2022-08-05 17:01:32 +0000 | [diff] [blame] | 84 | 'redfish-oem-manager-fan-data' : '-DBMCWEB_ENABLE_REDFISH_OEM_MANAGER_FAN_DATA', |
Ed Tanous | f523c32 | 2021-12-03 10:46:48 -0800 | [diff] [blame] | 85 | 'redfish-provisioning-feature' : '-DBMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE', |
Ed Tanous | 4dc23f3 | 2022-05-11 11:32:19 -0700 | [diff] [blame] | 86 | 'redfish-post-to-old-updateservice' : '-DBMCWEB_ENABLE_REDFISH_UPDATESERVICE_OLD_POST_URL', |
Ed Tanous | f523c32 | 2021-12-03 10:46:48 -0800 | [diff] [blame] | 87 | 'redfish' : '-DBMCWEB_ENABLE_REDFISH', |
| 88 | 'rest' : '-DBMCWEB_ENABLE_DBUS_REST', |
Manojkiran Eda | 2d74fbc | 2021-10-28 12:39:49 +0530 | [diff] [blame] | 89 | 'session-auth' : '-DBMCWEB_ENABLE_SESSION_AUTHENTICATION', |
| 90 | 'static-hosting' : '-DBMCWEB_ENABLE_STATIC_HOSTING', |
Manojkiran Eda | 2d74fbc | 2021-10-28 12:39:49 +0530 | [diff] [blame] | 91 | 'vm-websocket' : '-DBMCWEB_ENABLE_VM_WEBSOCKET', |
| 92 | 'xtoken-auth' : '-DBMCWEB_ENABLE_XTOKEN_AUTHENTICATION', |
Ed Tanous | f523c32 | 2021-12-03 10:46:48 -0800 | [diff] [blame] | 93 | #'vm-nbdproxy' : '-DBMCWEB_ENABLE_VM_NBDPROXY', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | # Get the options status and build a project summary to show which flags are |
| 97 | # being enabled during the configuration time. |
| 98 | |
| 99 | foreach option_key,option_value : feature_map |
| 100 | if(get_option(option_key).enabled()) |
| 101 | if(option_key == 'mutual-tls-auth' or option_key == 'insecure-disable-ssl') |
| 102 | if(get_option('insecure-disable-ssl').disabled() or get_option('mutual-tls-auth').disabled()) |
| 103 | add_project_arguments(option_value,language:'cpp') |
| 104 | summary(option_key,option_value, section : 'Enabled Features') |
| 105 | endif |
Nan Zhou | 3acced2 | 2022-07-12 23:21:02 +0000 | [diff] [blame] | 106 | elif (option_key in ['basic-auth', 'cookie-auth', 'session-auth', 'xtoken-auth', 'mutual-tls-auth']) |
| 107 | if (get_option('insecure-disable-auth').disabled()) |
| 108 | add_project_arguments(option_value, language:'cpp') |
| 109 | summary(option_key,option_value, section : 'Enabled Features') |
| 110 | endif |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 111 | else |
| 112 | summary(option_key,option_value, section : 'Enabled Features') |
| 113 | add_project_arguments(option_value,language:'cpp') |
| 114 | endif |
| 115 | else |
| 116 | if(option_key == 'insecure-disable-ssl') |
| 117 | summary('ssl','-DBMCWEB_ENABLE_SSL', section : 'Enabled Features') |
| 118 | add_project_arguments('-DBMCWEB_ENABLE_SSL', language : 'cpp') |
| 119 | endif |
| 120 | endif |
| 121 | endforeach |
| 122 | |
| 123 | if(get_option('tests').enabled()) |
| 124 | summary('unittest','NA', section : 'Enabled Features') |
| 125 | endif |
| 126 | |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 127 | # Add compiler arguments |
| 128 | |
| 129 | # -Wpedantic, -Wextra comes by default with warning level |
| 130 | add_project_arguments( |
| 131 | cxx.get_supported_arguments([ |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 132 | '-Wcast-align', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 133 | '-Wconversion', |
Ed Tanous | f523c32 | 2021-12-03 10:46:48 -0800 | [diff] [blame] | 134 | '-Wformat=2', |
| 135 | '-Wold-style-cast', |
| 136 | '-Woverloaded-virtual', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 137 | '-Wsign-conversion', |
Ed Tanous | f523c32 | 2021-12-03 10:46:48 -0800 | [diff] [blame] | 138 | '-Wunused', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 139 | '-Wno-attributes', |
| 140 | ]), |
| 141 | language: 'cpp' |
| 142 | ) |
| 143 | |
| 144 | if (cxx.get_id() == 'clang' and cxx.version().version_compare('>9.0')) |
| 145 | add_project_arguments( |
| 146 | cxx.get_supported_arguments([ |
| 147 | '-Weverything', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 148 | '-Wno-c++98-compat-pedantic', |
Ed Tanous | f523c32 | 2021-12-03 10:46:48 -0800 | [diff] [blame] | 149 | '-Wno-c++98-compat', |
| 150 | '-Wno-documentation-unknown-command', |
| 151 | '-Wno-documentation', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 152 | '-Wno-exit-time-destructors', |
Ed Tanous | f523c32 | 2021-12-03 10:46:48 -0800 | [diff] [blame] | 153 | '-Wno-global-constructors', |
| 154 | '-Wno-newline-eof', |
| 155 | '-Wno-padded', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 156 | '-Wno-shadow', |
| 157 | '-Wno-used-but-marked-unused', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 158 | '-Wno-weak-vtables', |
Ed Tanous | e6801eb | 2022-12-19 16:11:13 -0800 | [diff] [blame] | 159 | '-Wno-switch-enum', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 160 | ]), |
| 161 | language:'cpp') |
| 162 | endif |
| 163 | |
| 164 | # if compiler is gnu-gcc , and version is > 8.0 then we add few more |
| 165 | # compiler arguments , we know that will pass |
| 166 | |
| 167 | if (cxx.get_id() == 'gcc' and cxx.version().version_compare('>8.0')) |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 168 | add_project_arguments( |
| 169 | cxx.get_supported_arguments([ |
| 170 | '-Wduplicated-cond', |
| 171 | '-Wduplicated-branches', |
| 172 | '-Wlogical-op', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 173 | '-Wnull-dereference', |
Ed Tanous | 079360a | 2022-06-29 10:05:19 -0700 | [diff] [blame] | 174 | '-Wunused-parameter', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 175 | '-Wdouble-promotion', |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 176 | '-Wshadow', |
Ed Tanous | 30f11eb | 2022-05-25 10:42:15 -0700 | [diff] [blame] | 177 | '-Wno-psabi', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 178 | ]), |
| 179 | language:'cpp') |
Ed Tanous | c66403c | 2021-09-22 15:28:57 -0700 | [diff] [blame] | 180 | endif |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 181 | |
Ed Tanous | c66403c | 2021-09-22 15:28:57 -0700 | [diff] [blame] | 182 | if (get_option('buildtype') != 'plain') |
| 183 | if (get_option('b_lto') == true and get_option('optimization')!='0') |
| 184 | # Reduce the binary size by removing unnecessary |
| 185 | # dynamic symbol table entries |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 186 | |
Ed Tanous | c66403c | 2021-09-22 15:28:57 -0700 | [diff] [blame] | 187 | add_project_arguments( |
| 188 | cxx.get_supported_arguments([ |
| 189 | '-fno-fat-lto-objects', |
| 190 | '-fvisibility=hidden', |
| 191 | '-fvisibility-inlines-hidden' |
| 192 | ]), |
| 193 | language: 'cpp') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 194 | |
Ed Tanous | c66403c | 2021-09-22 15:28:57 -0700 | [diff] [blame] | 195 | if cxx.has_link_argument('-Wl,--exclude-libs,ALL') |
| 196 | add_project_link_arguments('-Wl,--exclude-libs,ALL', language: 'cpp') |
George Liu | e820493 | 2021-02-01 14:42:49 +0800 | [diff] [blame] | 197 | endif |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 198 | endif |
| 199 | endif |
| 200 | |
Ed Tanous | c66403c | 2021-09-22 15:28:57 -0700 | [diff] [blame] | 201 | if( get_option('bmcweb-logging').enabled() or \ |
| 202 | get_option('buildtype').startswith('debug')) |
| 203 | add_project_arguments([ |
| 204 | '-DBMCWEB_ENABLE_LOGGING', |
| 205 | '-DBMCWEB_ENABLE_DEBUG' |
| 206 | ], |
| 207 | language : 'cpp') |
| 208 | |
| 209 | summary({'debug' :'-DBMCWEB_ENABLE_DEBUG', |
| 210 | 'logging' : '-DBMCWEB_ENABLE_LOGGING', |
Ed Tanous | c66403c | 2021-09-22 15:28:57 -0700 | [diff] [blame] | 211 | |
Ed Tanous | c66403c | 2021-09-22 15:28:57 -0700 | [diff] [blame] | 212 | },section : 'Enabled Features') |
| 213 | endif |
| 214 | |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 215 | # Set Compiler Security flags |
| 216 | |
| 217 | security_flags = [ |
Ed Tanous | cf2f932 | 2021-09-22 15:34:41 -0700 | [diff] [blame] | 218 | '-fstack-protector-strong', |
| 219 | '-fPIE', |
| 220 | '-fPIC', |
| 221 | '-D_FORTIFY_SOURCE=2', |
| 222 | '-Wformat', |
| 223 | '-Wformat-security' |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 224 | ] |
| 225 | |
| 226 | ## Add security flags for builds of type 'release','debugoptimized' and 'minsize' |
| 227 | |
| 228 | if not (get_option('buildtype') == 'plain' or get_option('buildtype').startswith('debug')) |
| 229 | add_project_arguments( |
| 230 | cxx.get_supported_arguments([ |
| 231 | security_flags |
| 232 | ]), |
| 233 | language: 'cpp') |
| 234 | endif |
| 235 | |
| 236 | # Boost dependency configuration |
| 237 | |
| 238 | add_project_arguments( |
| 239 | cxx.get_supported_arguments([ |
Ed Tanous | cf2f932 | 2021-09-22 15:34:41 -0700 | [diff] [blame] | 240 | '-DBOOST_ALL_NO_LIB', |
Ed Tanous | cf2f932 | 2021-09-22 15:34:41 -0700 | [diff] [blame] | 241 | '-DBOOST_ALLOW_DEPRECATED_HEADERS', |
Ed Tanous | f523c32 | 2021-12-03 10:46:48 -0800 | [diff] [blame] | 242 | '-DBOOST_ASIO_DISABLE_THREADS', |
| 243 | '-DBOOST_ASIO_NO_DEPRECATED', |
| 244 | '-DBOOST_ASIO_SEPARATE_COMPILATION', |
| 245 | '-DBOOST_BEAST_SEPARATE_COMPILATION', |
Ed Tanous | 9e710e7 | 2022-03-12 17:40:04 -0800 | [diff] [blame] | 246 | '-DBOOST_EXCEPTION_DISABLE', |
Ed Tanous | ab6b6fe | 2022-08-02 20:28:15 -0700 | [diff] [blame] | 247 | '-DBOOST_URL_NO_SOURCE_LOCATION', |
Ed Tanous | 9e710e7 | 2022-03-12 17:40:04 -0800 | [diff] [blame] | 248 | '-DJSON_NOEXCEPTION', |
Ed Tanous | 209aa90 | 2022-08-02 21:11:06 -0700 | [diff] [blame] | 249 | '-DOPENSSL_NO_FILENAMES', |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 250 | ]), |
| 251 | language : 'cpp') |
| 252 | |
| 253 | # Find the dependency modules, if not found use meson wrap to get them |
| 254 | # automatically during the configure step |
Jason M. Bills | ceb8ddc | 2020-11-23 14:38:39 -0800 | [diff] [blame] | 255 | bmcweb_dependencies = [] |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 256 | |
Nan Zhou | 8682c5a | 2021-11-13 11:00:07 -0800 | [diff] [blame] | 257 | pam = cxx.find_library('pam', required: true) |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 258 | atomic = cxx.find_library('atomic', required: true) |
| 259 | openssl = dependency('openssl', required : true) |
Jason M. Bills | ceb8ddc | 2020-11-23 14:38:39 -0800 | [diff] [blame] | 260 | bmcweb_dependencies += [pam, atomic, openssl] |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 261 | |
Ed Tanous | 7bb985e | 2021-09-02 14:31:40 -0700 | [diff] [blame] | 262 | sdbusplus = dependency('sdbusplus', required : false, include_type: 'system') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 263 | if not sdbusplus.found() |
| 264 | sdbusplus_proj = subproject('sdbusplus', required: true) |
| 265 | sdbusplus = sdbusplus_proj.get_variable('sdbusplus_dep') |
| 266 | sdbusplus = sdbusplus.as_system('system') |
| 267 | endif |
Jason M. Bills | ceb8ddc | 2020-11-23 14:38:39 -0800 | [diff] [blame] | 268 | bmcweb_dependencies += sdbusplus |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 269 | |
Cody Smith | 3a097b2 | 2022-05-19 14:22:32 -0700 | [diff] [blame] | 270 | tinyxml = dependency('tinyxml2', |
| 271 | default_options: ['tests=false'], |
| 272 | include_type: 'system', |
| 273 | ) |
| 274 | bmcweb_dependencies += tinyxml |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 275 | |
| 276 | systemd = dependency('systemd') |
| 277 | zlib = dependency('zlib') |
Jason M. Bills | ceb8ddc | 2020-11-23 14:38:39 -0800 | [diff] [blame] | 278 | bmcweb_dependencies += [systemd, zlib] |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 279 | |
| 280 | if cxx.has_header('nlohmann/json.hpp') |
| 281 | nlohmann_json = declare_dependency() |
| 282 | else |
Josh Lehan | 259df35 | 2021-10-07 15:20:02 -0700 | [diff] [blame] | 283 | nlohmann_json_proj = subproject('nlohmann', required: true) |
| 284 | nlohmann_json = nlohmann_json_proj.get_variable('nlohmann_json_dep') |
Ed Tanous | b00dcc2 | 2021-02-23 12:52:50 -0800 | [diff] [blame] | 285 | nlohmann_json = nlohmann_json.as_system('system') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 286 | endif |
Jason M. Bills | ceb8ddc | 2020-11-23 14:38:39 -0800 | [diff] [blame] | 287 | bmcweb_dependencies += nlohmann_json |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 288 | |
Ed Tanous | 079360a | 2022-06-29 10:05:19 -0700 | [diff] [blame] | 289 | boost = dependency('boost',version : '>=1.81.0', required : false, include_type: 'system') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 290 | if not boost.found() |
Ed Tanous | f165dee | 2022-10-25 11:55:49 -0700 | [diff] [blame] | 291 | boost = subproject('boost', required: true).get_variable('boost_dep') |
Ed Tanous | 6c7d53a | 2022-11-02 16:47:45 -0700 | [diff] [blame] | 292 | boost = boost.as_system('system') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 293 | endif |
Jason M. Bills | ceb8ddc | 2020-11-23 14:38:39 -0800 | [diff] [blame] | 294 | bmcweb_dependencies += boost |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 295 | |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 296 | if get_option('tests').enabled() |
| 297 | gtest = dependency('gtest', main: true,disabler: true, required : false) |
| 298 | gmock = dependency('gmock', required : false) |
| 299 | if not gtest.found() and get_option('tests').enabled() |
| 300 | gtest_proj = subproject('gtest', required: true) |
| 301 | gtest = gtest_proj.get_variable('gtest_main_dep') |
| 302 | gmock = gtest_proj.get_variable('gmock_dep') |
| 303 | endif |
Ed Tanous | b00dcc2 | 2021-02-23 12:52:50 -0800 | [diff] [blame] | 304 | gtest = gtest.as_system('system') |
| 305 | gmock = gmock.as_system('system') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 306 | endif |
| 307 | |
Patrick Williams | 6a77993 | 2021-10-12 20:08:44 -0500 | [diff] [blame] | 308 | systemd_system_unit_dir = systemd.get_variable(pkgconfig: 'systemdsystemunitdir') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 309 | |
| 310 | bindir = get_option('prefix') + '/' +get_option('bindir') |
| 311 | |
| 312 | summary({ |
| 313 | 'prefix' : get_option('prefix'), |
| 314 | 'bindir' : bindir, |
| 315 | 'systemd unit directory' : systemd_system_unit_dir |
| 316 | }, section : 'Directories') |
| 317 | |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 318 | install_subdir('static', install_dir : 'share/www', strip_directory : true) |
| 319 | |
Nan Zhou | 307386e | 2022-10-12 20:29:34 +0000 | [diff] [blame] | 320 | # Config subdirectory |
| 321 | |
| 322 | subdir('config') |
| 323 | bmcweb_dependencies += conf_h_dep |
| 324 | |
Ed Tanous | 02f1cd9 | 2021-10-27 12:09:06 -0700 | [diff] [blame] | 325 | # Source files |
Nan Zhou | 0ad63df | 2022-10-17 23:03:21 +0000 | [diff] [blame] | 326 | fs = import('fs') |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 327 | |
Nan Zhou | 0ad63df | 2022-10-17 23:03:21 +0000 | [diff] [blame] | 328 | srcfiles_bmcweb = files( |
Ed Tanous | 02f1cd9 | 2021-10-27 12:09:06 -0700 | [diff] [blame] | 329 | 'redfish-core/src/error_messages.cpp', |
Sui Chen | d1d411f | 2022-04-10 23:09:36 -0700 | [diff] [blame] | 330 | 'redfish-core/src/registries.cpp', |
Ed Tanous | 02f1cd9 | 2021-10-27 12:09:06 -0700 | [diff] [blame] | 331 | 'redfish-core/src/utils/json_utils.cpp', |
Ed Tanous | 02f1cd9 | 2021-10-27 12:09:06 -0700 | [diff] [blame] | 332 | 'src/boost_asio_ssl.cpp', |
Ed Tanous | f523c32 | 2021-12-03 10:46:48 -0800 | [diff] [blame] | 333 | 'src/boost_asio.cpp', |
| 334 | 'src/boost_beast.cpp', |
| 335 | 'src/boost_url.cpp', |
Nan Zhou | 6384e32 | 2022-06-23 22:28:25 +0000 | [diff] [blame] | 336 | 'src/dbus_singleton.cpp', |
Nan Zhou | 0ad63df | 2022-10-17 23:03:21 +0000 | [diff] [blame] | 337 | ) |
Ed Tanous | 02f1cd9 | 2021-10-27 12:09:06 -0700 | [diff] [blame] | 338 | |
Ed Tanous | 42bbcd8 | 2023-01-07 18:04:28 -0800 | [diff] [blame] | 339 | bmcweblib = static_library( |
| 340 | 'bmcweblib', |
| 341 | srcfiles_bmcweb, |
| 342 | include_directories : incdir, |
| 343 | dependencies: bmcweb_dependencies, |
| 344 | ) |
| 345 | |
Ed Tanous | 02f1cd9 | 2021-10-27 12:09:06 -0700 | [diff] [blame] | 346 | # Generate the bmcweb executable |
| 347 | executable( |
| 348 | 'bmcweb', |
Ed Tanous | 42bbcd8 | 2023-01-07 18:04:28 -0800 | [diff] [blame] | 349 | 'src/webserver_main.cpp', |
Ed Tanous | 02f1cd9 | 2021-10-27 12:09:06 -0700 | [diff] [blame] | 350 | include_directories : incdir, |
| 351 | dependencies: bmcweb_dependencies, |
Ed Tanous | 42bbcd8 | 2023-01-07 18:04:28 -0800 | [diff] [blame] | 352 | link_with: bmcweblib, |
Ed Tanous | 02f1cd9 | 2021-10-27 12:09:06 -0700 | [diff] [blame] | 353 | link_args: '-Wl,--gc-sections', |
| 354 | install: true, |
| 355 | install_dir:bindir |
| 356 | ) |
| 357 | |
Nan Zhou | 0ad63df | 2022-10-17 23:03:21 +0000 | [diff] [blame] | 358 | srcfiles_unittest = files( |
Nan Zhou | c33a039 | 2022-09-10 18:11:41 +0000 | [diff] [blame] | 359 | 'test/http/crow_getroutes_test.cpp', |
| 360 | 'test/http/router_test.cpp', |
| 361 | 'test/http/utility_test.cpp', |
Ed Tanous | 2c9efc3 | 2022-07-31 22:08:26 -0700 | [diff] [blame] | 362 | 'test/http/verb_test.cpp', |
Nan Zhou | c33a039 | 2022-09-10 18:11:41 +0000 | [diff] [blame] | 363 | 'test/include/dbus_utility_test.cpp', |
| 364 | 'test/include/google/google_service_root_test.cpp', |
| 365 | 'test/include/http_utility_test.cpp', |
| 366 | 'test/include/human_sort_test.cpp', |
| 367 | 'test/include/ibm/configfile_test.cpp', |
| 368 | 'test/include/ibm/lock_test.cpp', |
| 369 | 'test/include/multipart_test.cpp', |
| 370 | 'test/include/openbmc_dbus_rest_test.cpp', |
Ed Tanous | 50ebd4a | 2023-01-19 19:03:17 -0800 | [diff] [blame] | 371 | 'test/include/str_utility_test.cpp', |
Nan Zhou | c33a039 | 2022-09-10 18:11:41 +0000 | [diff] [blame] | 372 | 'test/redfish-core/include/privileges_test.cpp', |
Carson Labrado | 7e8890c | 2022-11-23 23:58:01 +0000 | [diff] [blame] | 373 | 'test/redfish-core/include/redfish_aggregator_test.cpp', |
Nan Zhou | c33a039 | 2022-09-10 18:11:41 +0000 | [diff] [blame] | 374 | 'test/redfish-core/include/registries_test.cpp', |
| 375 | 'test/redfish-core/include/utils/hex_utils_test.cpp', |
| 376 | 'test/redfish-core/include/utils/ip_utils_test.cpp', |
| 377 | 'test/redfish-core/include/utils/json_utils_test.cpp', |
| 378 | 'test/redfish-core/include/utils/query_param_test.cpp', |
| 379 | 'test/redfish-core/include/utils/stl_utils_test.cpp', |
| 380 | 'test/redfish-core/include/utils/time_utils_test.cpp', |
| 381 | 'test/redfish-core/lib/chassis_test.cpp', |
Ed Tanous | c71d612 | 2022-11-29 14:10:32 -0800 | [diff] [blame] | 382 | 'test/redfish-core/lib/sensors_test.cpp', |
Nan Zhou | c33a039 | 2022-09-10 18:11:41 +0000 | [diff] [blame] | 383 | 'test/redfish-core/lib/log_services_dump_test.cpp', |
| 384 | 'test/redfish-core/lib/service_root_test.cpp', |
| 385 | 'test/redfish-core/lib/thermal_subsystem_test.cpp', |
Chicago Duan | 77b3643 | 2021-02-05 15:48:26 +0800 | [diff] [blame] | 386 | 'test/redfish-core/lib/power_subsystem_test.cpp', |
Nan Zhou | 0ad63df | 2022-10-17 23:03:21 +0000 | [diff] [blame] | 387 | ) |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 388 | |
| 389 | if(get_option('tests').enabled()) |
Ed Tanous | 02f1cd9 | 2021-10-27 12:09:06 -0700 | [diff] [blame] | 390 | # generate the test executable |
Nan Zhou | 0ad63df | 2022-10-17 23:03:21 +0000 | [diff] [blame] | 391 | foreach test_src : srcfiles_unittest |
| 392 | test_bin = executable( |
| 393 | fs.stem(test_src), |
Ed Tanous | 42bbcd8 | 2023-01-07 18:04:28 -0800 | [diff] [blame] | 394 | test_src, |
| 395 | link_with: bmcweblib, |
Nan Zhou | 0ad63df | 2022-10-17 23:03:21 +0000 | [diff] [blame] | 396 | include_directories : incdir, |
| 397 | install_dir: bindir, |
| 398 | dependencies: bmcweb_dependencies + [ |
| 399 | gtest, |
| 400 | gmock, |
| 401 | ] |
| 402 | ) |
| 403 | test(fs.stem(test_src), test_bin) |
| 404 | endforeach |
Manojkiran Eda | af6298d | 2020-05-27 08:51:32 +0530 | [diff] [blame] | 405 | endif |