blob: aa0fb3b2c944170c232208c7cfb997b4ffc39d68 [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
104 else
105 summary(option_key,option_value, section : 'Enabled Features')
106 add_project_arguments(option_value,language:'cpp')
107 endif
108 else
109 if(option_key == 'insecure-disable-ssl')
110 summary('ssl','-DBMCWEB_ENABLE_SSL', section : 'Enabled Features')
111 add_project_arguments('-DBMCWEB_ENABLE_SSL', language : 'cpp')
112 endif
113 endif
114endforeach
115
116if(get_option('tests').enabled())
117 summary('unittest','NA', section : 'Enabled Features')
118endif
119
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530120# Add compiler arguments
121
122# -Wpedantic, -Wextra comes by default with warning level
123add_project_arguments(
124 cxx.get_supported_arguments([
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530125 '-Wcast-align',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530126 '-Wconversion',
Ed Tanousf523c322021-12-03 10:46:48 -0800127 '-Wformat=2',
128 '-Wold-style-cast',
129 '-Woverloaded-virtual',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530130 '-Wsign-conversion',
Ed Tanousf523c322021-12-03 10:46:48 -0800131 '-Wunused',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530132 '-Wno-attributes',
133 ]),
134 language: 'cpp'
135)
136
137if (cxx.get_id() == 'clang' and cxx.version().version_compare('>9.0'))
138add_project_arguments(
139 cxx.get_supported_arguments([
140 '-Weverything',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530141 '-Wno-c++98-compat-pedantic',
Ed Tanousf523c322021-12-03 10:46:48 -0800142 '-Wno-c++98-compat',
143 '-Wno-documentation-unknown-command',
144 '-Wno-documentation',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530145 '-Wno-exit-time-destructors',
Ed Tanousf523c322021-12-03 10:46:48 -0800146 '-Wno-global-constructors',
147 '-Wno-newline-eof',
148 '-Wno-padded',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530149 '-Wno-shadow',
150 '-Wno-used-but-marked-unused',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530151 '-Wno-weak-vtables',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530152 ]),
153 language:'cpp')
154endif
155
156# if compiler is gnu-gcc , and version is > 8.0 then we add few more
157# compiler arguments , we know that will pass
158
159if (cxx.get_id() == 'gcc' and cxx.version().version_compare('>8.0'))
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530160 add_project_arguments(
161 cxx.get_supported_arguments([
162 '-Wduplicated-cond',
163 '-Wduplicated-branches',
164 '-Wlogical-op',
165 '-Wunused-parameter',
166 '-Wnull-dereference',
167 '-Wdouble-promotion',
Ed Tanous30f11eb2022-05-25 10:42:15 -0700168 '-Wno-psabi',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530169 ]),
170 language:'cpp')
Ed Tanousc66403c2021-09-22 15:28:57 -0700171endif
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530172
Ed Tanousc66403c2021-09-22 15:28:57 -0700173if (get_option('buildtype') != 'plain')
174 if (get_option('b_lto') == true and get_option('optimization')!='0')
175 # Reduce the binary size by removing unnecessary
176 # dynamic symbol table entries
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530177
Ed Tanousc66403c2021-09-22 15:28:57 -0700178 add_project_arguments(
179 cxx.get_supported_arguments([
180 '-fno-fat-lto-objects',
181 '-fvisibility=hidden',
182 '-fvisibility-inlines-hidden'
183 ]),
184 language: 'cpp')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530185
Ed Tanousc66403c2021-09-22 15:28:57 -0700186 if cxx.has_link_argument('-Wl,--exclude-libs,ALL')
187 add_project_link_arguments('-Wl,--exclude-libs,ALL', language: 'cpp')
George Liue8204932021-02-01 14:42:49 +0800188 endif
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530189 endif
190endif
191
Ed Tanousc66403c2021-09-22 15:28:57 -0700192if( get_option('bmcweb-logging').enabled() or \
193 get_option('buildtype').startswith('debug'))
194 add_project_arguments([
195 '-DBMCWEB_ENABLE_LOGGING',
196 '-DBMCWEB_ENABLE_DEBUG'
197 ],
198 language : 'cpp')
199
200 summary({'debug' :'-DBMCWEB_ENABLE_DEBUG',
201 'logging' : '-DBMCWEB_ENABLE_LOGGING',
Ed Tanousc66403c2021-09-22 15:28:57 -0700202
Ed Tanousc66403c2021-09-22 15:28:57 -0700203 },section : 'Enabled Features')
204endif
205
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530206# Set Compiler Security flags
207
208security_flags = [
Ed Tanouscf2f9322021-09-22 15:34:41 -0700209 '-fstack-protector-strong',
210 '-fPIE',
211 '-fPIC',
212 '-D_FORTIFY_SOURCE=2',
213 '-Wformat',
214 '-Wformat-security'
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530215]
216
217## Add security flags for builds of type 'release','debugoptimized' and 'minsize'
218
219if not (get_option('buildtype') == 'plain' or get_option('buildtype').startswith('debug'))
220 add_project_arguments(
221 cxx.get_supported_arguments([
222 security_flags
223 ]),
224 language: 'cpp')
225endif
226
227# Boost dependency configuration
228
229add_project_arguments(
230cxx.get_supported_arguments([
Ed Tanouscf2f9322021-09-22 15:34:41 -0700231 '-DBOOST_ALL_NO_LIB',
Ed Tanouscf2f9322021-09-22 15:34:41 -0700232 '-DBOOST_ALLOW_DEPRECATED_HEADERS',
Ed Tanousf523c322021-12-03 10:46:48 -0800233 '-DBOOST_ASIO_DISABLE_THREADS',
234 '-DBOOST_ASIO_NO_DEPRECATED',
235 '-DBOOST_ASIO_SEPARATE_COMPILATION',
236 '-DBOOST_BEAST_SEPARATE_COMPILATION',
237 '-DBOOST_BEAST_USE_STD_STRING_VIEW',
Ed Tanous9e710e72022-03-12 17:40:04 -0800238 '-DBOOST_EXCEPTION_DISABLE',
239 '-DJSON_NOEXCEPTION',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530240]),
241language : 'cpp')
242
243# Find the dependency modules, if not found use meson wrap to get them
244# automatically during the configure step
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800245bmcweb_dependencies = []
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530246
Nan Zhou8682c5a2021-11-13 11:00:07 -0800247pam = cxx.find_library('pam', required: true)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530248atomic = cxx.find_library('atomic', required: true)
249openssl = dependency('openssl', required : true)
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800250bmcweb_dependencies += [pam, atomic, openssl]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530251
Ed Tanous7bb985e2021-09-02 14:31:40 -0700252sdbusplus = dependency('sdbusplus', required : false, include_type: 'system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530253if not sdbusplus.found()
254 sdbusplus_proj = subproject('sdbusplus', required: true)
255 sdbusplus = sdbusplus_proj.get_variable('sdbusplus_dep')
256 sdbusplus = sdbusplus.as_system('system')
257endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800258bmcweb_dependencies += sdbusplus
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530259
Cody Smith3a097b22022-05-19 14:22:32 -0700260tinyxml = dependency('tinyxml2',
261 default_options: ['tests=false'],
262 include_type: 'system',
263)
264bmcweb_dependencies += tinyxml
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530265
266systemd = dependency('systemd')
267zlib = dependency('zlib')
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800268bmcweb_dependencies += [systemd, zlib]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530269
270if cxx.has_header('nlohmann/json.hpp')
271 nlohmann_json = declare_dependency()
272else
Josh Lehan259df352021-10-07 15:20:02 -0700273 nlohmann_json_proj = subproject('nlohmann', required: true)
274 nlohmann_json = nlohmann_json_proj.get_variable('nlohmann_json_dep')
Ed Tanousb00dcc22021-02-23 12:52:50 -0800275 nlohmann_json = nlohmann_json.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530276endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800277bmcweb_dependencies += nlohmann_json
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530278
Nan Zhou6bbda2c2022-02-21 12:47:41 -0800279boost = dependency('boost',version : '>=1.78.0', required : false, include_type: 'system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530280if not boost.found()
281 subproject('boost', required: false)
Nan Zhou6bbda2c2022-02-21 12:47:41 -0800282 boost_inc = include_directories('subprojects/boost_1_78_0/', is_system:true)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530283 boost = declare_dependency(include_directories : boost_inc)
Ed Tanousb00dcc22021-02-23 12:52:50 -0800284 boost = boost.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530285endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800286bmcweb_dependencies += boost
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530287
288if cxx.has_header('boost/url/url_view.hpp')
289 boost_url = declare_dependency()
290else
291 subproject('boost-url', required: false)
292 boost_url_inc = include_directories('subprojects/boost-url/include', is_system:true)
293 boost_url= declare_dependency(include_directories : boost_url_inc)
Ed Tanousb00dcc22021-02-23 12:52:50 -0800294 boost_url = boost_url.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530295endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800296bmcweb_dependencies += boost_url
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530297
298if get_option('tests').enabled()
299 gtest = dependency('gtest', main: true,disabler: true, required : false)
300 gmock = dependency('gmock', required : false)
301 if not gtest.found() and get_option('tests').enabled()
302 gtest_proj = subproject('gtest', required: true)
303 gtest = gtest_proj.get_variable('gtest_main_dep')
304 gmock = gtest_proj.get_variable('gmock_dep')
305 endif
Ed Tanousb00dcc22021-02-23 12:52:50 -0800306 gtest = gtest.as_system('system')
307 gmock = gmock.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530308endif
309
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530310# Gather the Configuration data
311
312conf_data = configuration_data()
Ed Tanous0260d9d2021-02-07 19:31:07 +0000313conf_data.set('BMCWEB_HTTP_REQ_BODY_LIMIT_MB', get_option('http-body-limit'))
314xss_enabled = get_option('insecure-disable-xss')
Ed Tanousfeaf1502021-02-23 08:53:50 -0800315conf_data.set10('BMCWEB_INSECURE_DISABLE_XSS_PREVENTION', xss_enabled.enabled())
Ed Tanousfa0b2172022-03-24 10:25:03 -0700316enable_redfish_query = get_option('insecure-enable-redfish-query')
317conf_data.set10('BMCWEB_INSECURE_ENABLE_QUERY_PARAMS', enable_redfish_query.enabled())
Carson Labrado7fb33562022-04-18 23:26:56 +0000318# enable_redfish_aggregation = get_option('redfish-aggregation')
319# conf_data.set10('BMCWEB_ENABLE_REDFISH_AGGREGATION', enable_redfish_aggregation.enabled())
Ed Tanouseb1c47d2022-02-09 11:47:27 -0800320insecure_push_style_notification = get_option('insecure-push-style-notification')
321conf_data.set10('BMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING', insecure_push_style_notification.enabled())
Ed Tanous0260d9d2021-02-07 19:31:07 +0000322conf_data.set('MESON_INSTALL_PREFIX', get_option('prefix'))
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700323conf_data.set('HTTPS_PORT', get_option('https_port'))
Ed Tanous75312982021-02-11 14:26:02 -0800324configure_file(input: 'bmcweb_config.h.in',
325 output: 'bmcweb_config.h',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530326 configuration: conf_data)
327
328# Configure and install systemd unit files
329
Patrick Williams6a779932021-10-12 20:08:44 -0500330systemd_system_unit_dir = systemd.get_variable(pkgconfig: 'systemdsystemunitdir')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530331
332bindir = get_option('prefix') + '/' +get_option('bindir')
333
334summary({
335 'prefix' : get_option('prefix'),
336 'bindir' : bindir,
337 'systemd unit directory' : systemd_system_unit_dir
338 }, section : 'Directories')
339
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700340configure_file(input : 'bmcweb.socket.in',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530341 output : 'bmcweb.socket',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530342 install_dir: systemd_system_unit_dir,
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700343 configuration: conf_data,
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530344 install : true)
345
346configure_file(input : 'bmcweb.service.in',
347 output : 'bmcweb.service',
348 install_dir: systemd_system_unit_dir,
349 configuration: conf_data,
350 install : true)
351
352# Copy pam-webserver to etc/pam.d
353configure_file(input : 'pam-webserver',
354 output : 'webserver',
355 copy : true,
356 install_dir: '/etc/pam.d',
357 install : true)
358
359install_subdir('static', install_dir : 'share/www', strip_directory : true)
360
Ed Tanous02f1cd92021-10-27 12:09:06 -0700361# Source files
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530362
Ed Tanous02f1cd92021-10-27 12:09:06 -0700363srcfiles_bmcweb = [
364 'redfish-core/src/error_messages.cpp',
365 'redfish-core/src/utils/json_utils.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700366 'src/boost_asio_ssl.cpp',
Ed Tanousf523c322021-12-03 10:46:48 -0800367 'src/boost_asio.cpp',
368 'src/boost_beast.cpp',
369 'src/boost_url.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700370]
371
372# Generate the bmcweb executable
373executable(
374 'bmcweb',
375 srcfiles_bmcweb + ['src/webserver_main.cpp'],
376 include_directories : incdir,
377 dependencies: bmcweb_dependencies,
378 link_args: '-Wl,--gc-sections',
379 install: true,
380 install_dir:bindir
381)
382
383srcfiles_unittest = [
Ed Tanousf523c322021-12-03 10:46:48 -0800384 'http/ut/utility_test.cpp',
Ed Tanous88a03c52022-03-14 10:16:07 -0700385 'http/ut/router_test.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700386 'include/ut/dbus_utility_test.cpp',
387 'include/ut/http_utility_test.cpp',
388 'include/ut/human_sort_test.cpp',
Ed Tanousc5ba4c22022-02-07 09:59:55 -0800389 'include/ut/multipart_test.cpp',
Josh Lehan482c45a2022-03-29 17:10:44 -0700390 'include/ut/openbmc_dbus_rest_test.cpp',
Ed Tanous7cf436c2022-03-22 23:53:51 -0700391 'redfish-core/include/utils/query_param_test.cpp',
392 'redfish-core/lib/ut/service_root_test.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700393 'redfish-core/ut/configfile_test.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700394 'redfish-core/ut/hex_utils_test.cpp',
Willy Tu15ed6782021-12-14 11:03:16 -0800395 'redfish-core/ut/json_utils_test.cpp',
Ed Tanousf523c322021-12-03 10:46:48 -0800396 'redfish-core/ut/lock_test.cpp',
397 'redfish-core/ut/privileges_test.cpp',
Ed Tanousc5ba4c22022-02-07 09:59:55 -0800398 'redfish-core/ut/registries_test.cpp',
Ed Tanousf523c322021-12-03 10:46:48 -0800399 'redfish-core/ut/stl_utils_test.cpp',
400 'redfish-core/ut/time_utils_test.cpp',
Nan Zhou5ad77202022-06-13 22:33:55 +0000401 'src/crow_getroutes_test.cpp',
Ed Tanous02f1cd92021-10-27 12:09:06 -0700402]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530403
404if(get_option('tests').enabled())
Ed Tanous02f1cd92021-10-27 12:09:06 -0700405 # generate the test executable
406 ut_bin = executable(
407 'bmcweb_unit_test',
408 srcfiles_unittest + srcfiles_bmcweb,
409 include_directories : incdir,
410 install_dir: bindir,
411 dependencies: bmcweb_dependencies + [
412 gtest,
413 gmock,
414 ]
415 )
416 test('bmcweb_unit_test', ut_bin)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530417endif