blob: ad1f4018dd4b10eb530b2c79df82f8d6657e0978 [file] [log] [blame]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +05301project('bmcweb', 'cpp',
2 version : '1.0',
Patrick Williamsc52ee722021-10-06 15:17:42 -05003 meson_version: '>=0.57.0',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +05304 default_options: [
Manojkiran Edacb2ed192021-02-15 08:30:43 +05305 'b_lto_mode=default',
Ed Tanousf523c322021-12-03 10:46:48 -08006 '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 Edaaf6298d2020-05-27 08:51:32 +053014 ])
15
16# Project related links
17
18project_pretty_name = 'bmcweb'
19project_url = 'https://github.com/openbmc/' + project_pretty_name
20project_issues_url = project_url + '/issues/new'
21summary('Issues',project_issues_url, section: 'Report Issues')
22
23# Validate the c++ Standard
24
Patrick Williamsc52ee722021-10-06 15:17:42 -050025if get_option('cpp_std') != 'c++20'
26 error('This project requires c++20 support')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053027endif
28
29# Get compiler and default build type
30
31cxx = meson.get_compiler('cpp')
32build = get_option('buildtype')
33optimization = get_option('optimization')
34summary('Build Type',build, section : 'Build Info')
35summary('Optimization',optimization, section : 'Build Info')
36
Ed Tanous5e34b672021-02-05 14:21:27 -080037
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053038# remove debug information for minsize buildtype
39if(get_option('buildtype') == 'minsize')
Ed Tanous5e34b672021-02-05 14:21:27 -080040 add_project_arguments(['-fdata-sections', '-ffunction-sections'], language : 'cpp')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053041 add_project_arguments('-DNDEBUG', language : 'cpp')
42endif
43
44# Disable lto when compiling with no optimization
45if(get_option('optimization') == '0')
46 add_project_arguments('-fno-lto', language: 'cpp')
47 message('Disabling lto & its supported features as optimization is disabled')
48endif
49
50# Include Directories
51
Ed Tanouscf2f9322021-09-22 15:34:41 -070052incdir = include_directories(
53 'include',
54 'redfish-core/include',
55 'redfish-core/lib',
56 'http'
57)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053058
59# Get the options and enable the respective features
60## create a MAP of "options : feature_flag"
61
62feature_map = {
Manojkiran Eda2d74fbc2021-10-28 12:39:49 +053063 '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 Zhoua43ea822022-05-27 00:42:44 +000068 'insecure-disable-auth' : '-DBMCWEB_INSECURE_DISABLE_AUTHX',
Manojkiran Eda2d74fbc2021-10-28 12:39:49 +053069 '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',
73 'kvm' : '-DBMCWEB_ENABLE_KVM' ,
74 'mutual-tls-auth' : '-DBMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION',
Carson Labrado7fb33562022-04-18 23:26:56 +000075 'redfish-aggregation' : '-DBMCWEB_ENABLE_REDFISH_AGGREGATION',
Ed Tanousf523c322021-12-03 10:46:48 -080076 'redfish-allow-deprecated-power-thermal' : '-DBMCWEB_ALLOW_DEPRECATED_POWER_THERMAL',
Manojkiran Eda2d74fbc2021-10-28 12:39:49 +053077 'redfish-bmc-journal' : '-DBMCWEB_ENABLE_REDFISH_BMC_JOURNAL',
78 'redfish-cpu-log' : '-DBMCWEB_ENABLE_REDFISH_CPU_LOG',
79 'redfish-dbus-log' : '-DBMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES',
80 'redfish-dump-log' : '-DBMCWEB_ENABLE_REDFISH_DUMP_LOG',
Ed Tanousf523c322021-12-03 10:46:48 -080081 'redfish-host-logger' : '-DBMCWEB_ENABLE_REDFISH_HOST_LOGGER',
Manojkiran Eda2d74fbc2021-10-28 12:39:49 +053082 'redfish-new-powersubsystem-thermalsubsystem' : '-DBMCWEB_NEW_POWERSUBSYSTEM_THERMALSUBSYSTEM',
Ed Tanousf523c322021-12-03 10:46:48 -080083 'redfish-provisioning-feature' : '-DBMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE',
Ed Tanous4dc23f32022-05-11 11:32:19 -070084 'redfish-post-to-old-updateservice' : '-DBMCWEB_ENABLE_REDFISH_UPDATESERVICE_OLD_POST_URL',
Ed Tanousf523c322021-12-03 10:46:48 -080085 'redfish' : '-DBMCWEB_ENABLE_REDFISH',
86 'rest' : '-DBMCWEB_ENABLE_DBUS_REST',
Manojkiran Eda2d74fbc2021-10-28 12:39:49 +053087 'session-auth' : '-DBMCWEB_ENABLE_SESSION_AUTHENTICATION',
88 'static-hosting' : '-DBMCWEB_ENABLE_STATIC_HOSTING',
Manojkiran Eda2d74fbc2021-10-28 12:39:49 +053089 'vm-websocket' : '-DBMCWEB_ENABLE_VM_WEBSOCKET',
90 'xtoken-auth' : '-DBMCWEB_ENABLE_XTOKEN_AUTHENTICATION',
Ed Tanousf523c322021-12-03 10:46:48 -080091 #'vm-nbdproxy' : '-DBMCWEB_ENABLE_VM_NBDPROXY',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053092}
93
94# Get the options status and build a project summary to show which flags are
95# being enabled during the configuration time.
96
97foreach option_key,option_value : feature_map
98 if(get_option(option_key).enabled())
99 if(option_key == 'mutual-tls-auth' or option_key == 'insecure-disable-ssl')
100 if(get_option('insecure-disable-ssl').disabled() or get_option('mutual-tls-auth').disabled())
101 add_project_arguments(option_value,language:'cpp')
102 summary(option_key,option_value, section : 'Enabled Features')
103 endif
Nan Zhou3acced22022-07-12 23:21:02 +0000104 elif (option_key in ['basic-auth', 'cookie-auth', 'session-auth', 'xtoken-auth', 'mutual-tls-auth'])
105 if (get_option('insecure-disable-auth').disabled())
106 add_project_arguments(option_value, language:'cpp')
107 summary(option_key,option_value, section : 'Enabled Features')
108 endif
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530109 else
110 summary(option_key,option_value, section : 'Enabled Features')
111 add_project_arguments(option_value,language:'cpp')
112 endif
113 else
114 if(option_key == 'insecure-disable-ssl')
115 summary('ssl','-DBMCWEB_ENABLE_SSL', section : 'Enabled Features')
116 add_project_arguments('-DBMCWEB_ENABLE_SSL', language : 'cpp')
117 endif
118 endif
119endforeach
120
121if(get_option('tests').enabled())
122 summary('unittest','NA', section : 'Enabled Features')
123endif
124
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530125# Add compiler arguments
126
127# -Wpedantic, -Wextra comes by default with warning level
128add_project_arguments(
129 cxx.get_supported_arguments([
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530130 '-Wcast-align',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530131 '-Wconversion',
Ed Tanousf523c322021-12-03 10:46:48 -0800132 '-Wformat=2',
133 '-Wold-style-cast',
134 '-Woverloaded-virtual',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530135 '-Wsign-conversion',
Ed Tanousf523c322021-12-03 10:46:48 -0800136 '-Wunused',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530137 '-Wno-attributes',
138 ]),
139 language: 'cpp'
140)
141
142if (cxx.get_id() == 'clang' and cxx.version().version_compare('>9.0'))
143add_project_arguments(
144 cxx.get_supported_arguments([
145 '-Weverything',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530146 '-Wno-c++98-compat-pedantic',
Ed Tanousf523c322021-12-03 10:46:48 -0800147 '-Wno-c++98-compat',
148 '-Wno-documentation-unknown-command',
149 '-Wno-documentation',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530150 '-Wno-exit-time-destructors',
Ed Tanousf523c322021-12-03 10:46:48 -0800151 '-Wno-global-constructors',
152 '-Wno-newline-eof',
153 '-Wno-padded',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530154 '-Wno-shadow',
155 '-Wno-used-but-marked-unused',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530156 '-Wno-weak-vtables',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530157 ]),
158 language:'cpp')
159endif
160
161# if compiler is gnu-gcc , and version is > 8.0 then we add few more
162# compiler arguments , we know that will pass
163
164if (cxx.get_id() == 'gcc' and cxx.version().version_compare('>8.0'))
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530165 add_project_arguments(
166 cxx.get_supported_arguments([
167 '-Wduplicated-cond',
168 '-Wduplicated-branches',
169 '-Wlogical-op',
170 '-Wunused-parameter',
171 '-Wnull-dereference',
172 '-Wdouble-promotion',
Ed Tanous8a592812022-06-04 09:06:59 -0700173 '-Wshadow',
Ed Tanous30f11eb2022-05-25 10:42:15 -0700174 '-Wno-psabi',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530175 ]),
176 language:'cpp')
Ed Tanousc66403c2021-09-22 15:28:57 -0700177endif
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530178
Ed Tanousc66403c2021-09-22 15:28:57 -0700179if (get_option('buildtype') != 'plain')
180 if (get_option('b_lto') == true and get_option('optimization')!='0')
181 # Reduce the binary size by removing unnecessary
182 # dynamic symbol table entries
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530183
Ed Tanousc66403c2021-09-22 15:28:57 -0700184 add_project_arguments(
185 cxx.get_supported_arguments([
186 '-fno-fat-lto-objects',
187 '-fvisibility=hidden',
188 '-fvisibility-inlines-hidden'
189 ]),
190 language: 'cpp')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530191
Ed Tanousc66403c2021-09-22 15:28:57 -0700192 if cxx.has_link_argument('-Wl,--exclude-libs,ALL')
193 add_project_link_arguments('-Wl,--exclude-libs,ALL', language: 'cpp')
George Liue8204932021-02-01 14:42:49 +0800194 endif
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530195 endif
196endif
197
Ed Tanousc66403c2021-09-22 15:28:57 -0700198if( get_option('bmcweb-logging').enabled() or \
199 get_option('buildtype').startswith('debug'))
200 add_project_arguments([
201 '-DBMCWEB_ENABLE_LOGGING',
202 '-DBMCWEB_ENABLE_DEBUG'
203 ],
204 language : 'cpp')
205
206 summary({'debug' :'-DBMCWEB_ENABLE_DEBUG',
207 'logging' : '-DBMCWEB_ENABLE_LOGGING',
Ed Tanousc66403c2021-09-22 15:28:57 -0700208
Ed Tanousc66403c2021-09-22 15:28:57 -0700209 },section : 'Enabled Features')
210endif
211
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530212# Set Compiler Security flags
213
214security_flags = [
Ed Tanouscf2f9322021-09-22 15:34:41 -0700215 '-fstack-protector-strong',
216 '-fPIE',
217 '-fPIC',
218 '-D_FORTIFY_SOURCE=2',
219 '-Wformat',
220 '-Wformat-security'
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530221]
222
223## Add security flags for builds of type 'release','debugoptimized' and 'minsize'
224
225if not (get_option('buildtype') == 'plain' or get_option('buildtype').startswith('debug'))
226 add_project_arguments(
227 cxx.get_supported_arguments([
228 security_flags
229 ]),
230 language: 'cpp')
231endif
232
233# Boost dependency configuration
234
235add_project_arguments(
236cxx.get_supported_arguments([
Ed Tanouscf2f9322021-09-22 15:34:41 -0700237 '-DBOOST_ALL_NO_LIB',
Ed Tanouscf2f9322021-09-22 15:34:41 -0700238 '-DBOOST_ALLOW_DEPRECATED_HEADERS',
Ed Tanousf523c322021-12-03 10:46:48 -0800239 '-DBOOST_ASIO_DISABLE_THREADS',
240 '-DBOOST_ASIO_NO_DEPRECATED',
241 '-DBOOST_ASIO_SEPARATE_COMPILATION',
242 '-DBOOST_BEAST_SEPARATE_COMPILATION',
243 '-DBOOST_BEAST_USE_STD_STRING_VIEW',
Ed Tanous9e710e72022-03-12 17:40:04 -0800244 '-DBOOST_EXCEPTION_DISABLE',
245 '-DJSON_NOEXCEPTION',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530246]),
247language : 'cpp')
248
249# Find the dependency modules, if not found use meson wrap to get them
250# automatically during the configure step
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800251bmcweb_dependencies = []
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530252
Nan Zhou8682c5a2021-11-13 11:00:07 -0800253pam = cxx.find_library('pam', required: true)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530254atomic = cxx.find_library('atomic', required: true)
255openssl = dependency('openssl', required : true)
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800256bmcweb_dependencies += [pam, atomic, openssl]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530257
Ed Tanous7bb985e2021-09-02 14:31:40 -0700258sdbusplus = dependency('sdbusplus', required : false, include_type: 'system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530259if not sdbusplus.found()
260 sdbusplus_proj = subproject('sdbusplus', required: true)
261 sdbusplus = sdbusplus_proj.get_variable('sdbusplus_dep')
262 sdbusplus = sdbusplus.as_system('system')
263endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800264bmcweb_dependencies += sdbusplus
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530265
Cody Smith3a097b22022-05-19 14:22:32 -0700266tinyxml = dependency('tinyxml2',
267 default_options: ['tests=false'],
268 include_type: 'system',
269)
270bmcweb_dependencies += tinyxml
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530271
272systemd = dependency('systemd')
273zlib = dependency('zlib')
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800274bmcweb_dependencies += [systemd, zlib]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530275
276if cxx.has_header('nlohmann/json.hpp')
277 nlohmann_json = declare_dependency()
278else
Josh Lehan259df352021-10-07 15:20:02 -0700279 nlohmann_json_proj = subproject('nlohmann', required: true)
280 nlohmann_json = nlohmann_json_proj.get_variable('nlohmann_json_dep')
Ed Tanousb00dcc22021-02-23 12:52:50 -0800281 nlohmann_json = nlohmann_json.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530282endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800283bmcweb_dependencies += nlohmann_json
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530284
Nan Zhou6bbda2c2022-02-21 12:47:41 -0800285boost = dependency('boost',version : '>=1.78.0', required : false, include_type: 'system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530286if not boost.found()
287 subproject('boost', required: false)
Nan Zhou6bbda2c2022-02-21 12:47:41 -0800288 boost_inc = include_directories('subprojects/boost_1_78_0/', is_system:true)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530289 boost = declare_dependency(include_directories : boost_inc)
Ed Tanousb00dcc22021-02-23 12:52:50 -0800290 boost = boost.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530291endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800292bmcweb_dependencies += boost
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530293
294if cxx.has_header('boost/url/url_view.hpp')
295 boost_url = declare_dependency()
296else
297 subproject('boost-url', required: false)
298 boost_url_inc = include_directories('subprojects/boost-url/include', is_system:true)
299 boost_url= declare_dependency(include_directories : boost_url_inc)
Ed Tanousb00dcc22021-02-23 12:52:50 -0800300 boost_url = boost_url.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530301endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800302bmcweb_dependencies += boost_url
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530303
304if get_option('tests').enabled()
305 gtest = dependency('gtest', main: true,disabler: true, required : false)
306 gmock = dependency('gmock', required : false)
307 if not gtest.found() and get_option('tests').enabled()
308 gtest_proj = subproject('gtest', required: true)
309 gtest = gtest_proj.get_variable('gtest_main_dep')
310 gmock = gtest_proj.get_variable('gmock_dep')
311 endif
Ed Tanousb00dcc22021-02-23 12:52:50 -0800312 gtest = gtest.as_system('system')
313 gmock = gmock.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530314endif
315
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530316# Gather the Configuration data
317
318conf_data = configuration_data()
Ed Tanous0260d9d2021-02-07 19:31:07 +0000319conf_data.set('BMCWEB_HTTP_REQ_BODY_LIMIT_MB', get_option('http-body-limit'))
320xss_enabled = get_option('insecure-disable-xss')
Ed Tanousfeaf1502021-02-23 08:53:50 -0800321conf_data.set10('BMCWEB_INSECURE_DISABLE_XSS_PREVENTION', xss_enabled.enabled())
Ed Tanousfa0b2172022-03-24 10:25:03 -0700322enable_redfish_query = get_option('insecure-enable-redfish-query')
323conf_data.set10('BMCWEB_INSECURE_ENABLE_QUERY_PARAMS', enable_redfish_query.enabled())
Carson Labrado7fb33562022-04-18 23:26:56 +0000324# enable_redfish_aggregation = get_option('redfish-aggregation')
325# conf_data.set10('BMCWEB_ENABLE_REDFISH_AGGREGATION', enable_redfish_aggregation.enabled())
Ed Tanouseb1c47d2022-02-09 11:47:27 -0800326insecure_push_style_notification = get_option('insecure-push-style-notification')
327conf_data.set10('BMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING', insecure_push_style_notification.enabled())
Ed Tanous0260d9d2021-02-07 19:31:07 +0000328conf_data.set('MESON_INSTALL_PREFIX', get_option('prefix'))
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700329conf_data.set('HTTPS_PORT', get_option('https_port'))
Ed Tanous75312982021-02-11 14:26:02 -0800330configure_file(input: 'bmcweb_config.h.in',
331 output: 'bmcweb_config.h',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530332 configuration: conf_data)
333
334# Configure and install systemd unit files
335
Patrick Williams6a779932021-10-12 20:08:44 -0500336systemd_system_unit_dir = systemd.get_variable(pkgconfig: 'systemdsystemunitdir')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530337
338bindir = get_option('prefix') + '/' +get_option('bindir')
339
340summary({
341 'prefix' : get_option('prefix'),
342 'bindir' : bindir,
343 'systemd unit directory' : systemd_system_unit_dir
344 }, section : 'Directories')
345
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700346configure_file(input : 'bmcweb.socket.in',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530347 output : 'bmcweb.socket',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530348 install_dir: systemd_system_unit_dir,
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700349 configuration: conf_data,
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530350 install : true)
351
352configure_file(input : 'bmcweb.service.in',
353 output : 'bmcweb.service',
354 install_dir: systemd_system_unit_dir,
355 configuration: conf_data,
356 install : true)
357
358# Copy pam-webserver to etc/pam.d
359configure_file(input : 'pam-webserver',
360 output : 'webserver',
361 copy : true,
362 install_dir: '/etc/pam.d',
363 install : true)
364
365install_subdir('static', install_dir : 'share/www', strip_directory : true)
366
Ed Tanous02f1cd92021-10-27 12:09:06 -0700367# Source files
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530368
Ed Tanous02f1cd92021-10-27 12:09:06 -0700369srcfiles_bmcweb = [
370 'redfish-core/src/error_messages.cpp',
371 'redfish-core/src/utils/json_utils.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700372 'src/boost_asio_ssl.cpp',
Ed Tanousf523c322021-12-03 10:46:48 -0800373 'src/boost_asio.cpp',
374 'src/boost_beast.cpp',
375 'src/boost_url.cpp',
Nan Zhou6384e322022-06-23 22:28:25 +0000376 'src/dbus_singleton.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700377]
378
379# Generate the bmcweb executable
380executable(
381 'bmcweb',
382 srcfiles_bmcweb + ['src/webserver_main.cpp'],
383 include_directories : incdir,
384 dependencies: bmcweb_dependencies,
385 link_args: '-Wl,--gc-sections',
386 install: true,
387 install_dir:bindir
388)
389
390srcfiles_unittest = [
Ed Tanousf523c322021-12-03 10:46:48 -0800391 'http/ut/utility_test.cpp',
Ed Tanous88a03c52022-03-14 10:16:07 -0700392 'http/ut/router_test.cpp',
Nan Zhou322204a2022-07-03 06:07:21 +0000393 'include/google/google_service_root_test.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700394 'include/ut/dbus_utility_test.cpp',
395 'include/ut/http_utility_test.cpp',
396 'include/ut/human_sort_test.cpp',
Ed Tanousc5ba4c22022-02-07 09:59:55 -0800397 'include/ut/multipart_test.cpp',
Josh Lehan482c45a2022-03-29 17:10:44 -0700398 'include/ut/openbmc_dbus_rest_test.cpp',
Ed Tanous7cf436c2022-03-22 23:53:51 -0700399 'redfish-core/include/utils/query_param_test.cpp',
400 'redfish-core/lib/ut/service_root_test.cpp',
Xiaochao Ma29739632021-03-02 15:53:13 +0800401 'redfish-core/lib/ut/thermal_subsystem_test.cpp',
Nan Zhoucf7eba02022-07-21 23:53:20 +0000402 'redfish-core/lib/chassis_test.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700403 'redfish-core/ut/configfile_test.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700404 'redfish-core/ut/hex_utils_test.cpp',
Nan Zhou774258e2022-07-03 22:22:47 +0000405 'redfish-core/ut/ip_utils_test.cpp',
Willy Tu15ed6782021-12-14 11:03:16 -0800406 'redfish-core/ut/json_utils_test.cpp',
Ed Tanousf523c322021-12-03 10:46:48 -0800407 'redfish-core/ut/lock_test.cpp',
408 'redfish-core/ut/privileges_test.cpp',
Ed Tanousc5ba4c22022-02-07 09:59:55 -0800409 'redfish-core/ut/registries_test.cpp',
Ed Tanousf523c322021-12-03 10:46:48 -0800410 'redfish-core/ut/stl_utils_test.cpp',
411 'redfish-core/ut/time_utils_test.cpp',
Nan Zhou5ad77202022-06-13 22:33:55 +0000412 'src/crow_getroutes_test.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700413]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530414
415if(get_option('tests').enabled())
Ed Tanous02f1cd92021-10-27 12:09:06 -0700416 # generate the test executable
417 ut_bin = executable(
418 'bmcweb_unit_test',
419 srcfiles_unittest + srcfiles_bmcweb,
420 include_directories : incdir,
421 install_dir: bindir,
422 dependencies: bmcweb_dependencies + [
423 gtest,
424 gmock,
425 ]
426 )
427 test('bmcweb_unit_test', ut_bin)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530428endif