blob: 3ced518b68e2fd3abe6687d3db62f03648f19fed [file] [log] [blame]
Ed Tanous1e439872018-05-18 11:48:52 -07001cmake_minimum_required (VERSION 3.5 FATAL_ERROR)
Ed Tanous0fdddb12017-02-28 11:06:34 -08002
Ed Tanous271584a2019-07-09 16:24:22 -07003project (bmc-webserver CXX)
4
Ed Tanous1e439872018-05-18 11:48:52 -07005cmake_policy (SET CMP0054 NEW)
Ed Tanouscfbe25d2017-05-23 16:34:35 -07006
Ed Tanous1e439872018-05-18 11:48:52 -07007set (CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
Ed Tanous0fdddb12017-02-28 11:06:34 -08008
Ed Tanous1e439872018-05-18 11:48:52 -07009option (BUILD_STATIC_LIBS "Built static libraries" ON)
Ed Tanous911ac312017-08-15 09:37:42 -070010
Joseph Reynolds7a777f52018-11-07 22:01:31 -060011option (YOCTO_DEPENDENCIES "Use YOCTO dependencies system" OFF)
Ed Tanous0fdddb12017-02-28 11:06:34 -080012
James Feist41d1d182019-10-18 13:57:16 -070013option (
14 BMCWEB_ENABLE_KVM
15 "Enable the KVM host video WebSocket. Path is '/kvm/0'. Video is from the
16 BMC's '/dev/video' device."
17 ON
18)
19option (
20 BMCWEB_ENABLE_VM_WEBSOCKET
21 "Enable the Virtual Media WebSocket. Path is '/vm/0/0'to open the websocket.
22 See https://github.com/openbmc/jsnbd/blob/master/README."
23 ON
24)
25option (
Iwona Klimaszewskac0a1c8a2019-07-12 18:26:38 +020026 BMCWEB_ENABLE_VM_NBDPROXY
27 "Enable the Virtual Media WebSocket."
28 OFF
29)
30option (
James Feist41d1d182019-10-18 13:57:16 -070031 BMCWEB_ENABLE_DBUS_REST
32 "Enable Phosphor REST (D-Bus) APIs. Paths directly map Phosphor D-Bus
33 object paths, for example, '/xyz/openbmc_project/logging/entry/enumerate'.
34 See https://github.com/openbmc/docs/blob/master/rest-api.md."
35 ON
36)
37option (
38 BMCWEB_ENABLE_REDFISH
39 "Enable Redfish APIs. Paths are under '/redfish/v1/'. See
40 https://github.com/openbmc/bmcweb/blob/master/DEVELOPING.md#redfish."
41 ON
42)
43option (
44 BMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET
45 "Enable host serial console WebSocket. Path is '/console0'. See
46 https://github.com/openbmc/docs/blob/master/console.md."
47 ON
48)
49option (
50 BMCWEB_ENABLE_STATIC_HOSTING
51 "Enable serving files from the '/usr/share/www' directory as paths under
52 '/'."
53 ON
54)
55option (
56 BMCWEB_ENABLE_REDFISH_BMC_JOURNAL
57 "Enable BMC journal access through Redfish. Paths are under
58 '/redfish/v1/Managers/bmc/LogServices/Journal'."
59 OFF
60)
61option (
62 BMCWEB_ENABLE_REDFISH_RAW_PECI
63 "Enable PECI transactions through Redfish. Paths are under
64 '/redfish/v1/Systems/system/LogServices/CpuLog/Actions/Oem/CpuLog.SendRawPeci'."
65 OFF
66)
67option (
68 BMCWEB_ENABLE_REDFISH_CPU_LOG
69 "Enable CPU log service transactions through Redfish. Paths are under
70 '/redfish/v1/Systems/system/LogServices/Crashdump'."
71 OFF
72)
73option (
74 BMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES
75 "Enable DBUS log service transactions through Redfish. Paths are under
76 '/redfish/v1/Systems/system/LogServices/EventLog/Entries'."
77 OFF
78)
AppaRao Pulia6349912019-10-18 17:16:08 +053079option (
80 BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE
81 "Enable provisioning feature support in redfish. Paths are under
82 '/redfish/v1/Systems/system/'."
83 OFF
84)
Kowalski, Kamil55e43f62019-07-10 13:12:57 +020085option (
86 BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION
87 "Enables authenticating users through TLS client certificates.
88 The BMCWEB_INSECURE_DISABLE_SSL must be OFF for this option to take effect."
Zbigniew Kurzynskicac94c52019-11-07 12:55:04 +010089 ON
Kowalski, Kamil55e43f62019-07-10 13:12:57 +020090)
Ed Tanous1da66f72018-07-27 16:13:37 -070091
Ed Tanousbdd1c832018-10-12 11:00:30 -070092# Insecure options. Every option that starts with a BMCWEB_INSECURE flag should
Ed Tanous1e439872018-05-18 11:48:52 -070093# not be enabled by default for any platform, unless the author fully
94# comprehends the implications of doing so. In general, enabling these options
95# will cause security problems of varying degrees
James Feist41d1d182019-10-18 13:57:16 -070096option (
97 BMCWEB_INSECURE_DISABLE_CSRF_PREVENTION
98 "Disable CSRF prevention checks. Should be set to OFF for production
99 systems."
100 OFF
101)
Ed Tanousf3d847c2017-06-12 16:01:42 -0700102
James Feist41d1d182019-10-18 13:57:16 -0700103option (BMCWEB_INSECURE_DISABLE_SSL
104 "Disable SSL ports. Should be set to OFF for production systems." OFF)
Ed Tanous0fdddb12017-02-28 11:06:34 -0800105
James Feist41d1d182019-10-18 13:57:16 -0700106option (
107 BMCWEB_INSECURE_DISABLE_AUTHENTICATION
108 "Disable authentication on all ports. Should be set to OFF for production
109 systems"
110 OFF
111)
Ed Tanous0fdddb12017-02-28 11:06:34 -0800112
Ed Tanous1e439872018-05-18 11:48:52 -0700113option (BMCWEB_INSECURE_DISABLE_XSS_PREVENTION "Disable XSS preventions" OFF)
Ed Tanous0d485ef2017-05-23 09:23:53 -0700114
James Feist41d1d182019-10-18 13:57:16 -0700115option (
116 BMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE
117 "Enable TFTP based firmware update transactions through Redfish
118 UpdateService.SimpleUpdate."
119 OFF
120)
Andrew Geissler0554c982019-04-23 14:40:12 -0500121
jayaprakash Mutyala70d1d0a2020-01-21 23:41:36 +0000122option (BMCWEB_ENABLE_VALIDATION_UNSECURE_FEATURE
123 "Enables unsecure features required by validation. Note: must
124 be turned off for production images."
125 OFF)
126
Adriana Kobylak0e1cf262019-12-05 13:57:57 -0600127set (BMCWEB_HTTP_REQ_BODY_LIMIT_MB "30" CACHE STRING
128 "The max HTTP request body size in MB")
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200129
Adriana Kobylak0e1cf262019-12-05 13:57:57 -0600130configure_file(config.h.in ${CMAKE_CURRENT_SOURCE_DIR}/include/config.h)
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200131
132if (BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION AND BMCWEB_INSECURE_DISABLE_SSL)
133 message("SSL Must be enabled to allow SSL authentication")
134 set(BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION OFF)
135endif()
136
137
Ed Tanous1e439872018-05-18 11:48:52 -0700138include (CTest)
139
Ed Tanous62288742018-10-16 14:58:20 -0700140set (CMAKE_CXX_STANDARD 17)
Ed Tanous1e439872018-05-18 11:48:52 -0700141set (CMAKE_CXX_STANDARD_REQUIRED ON)
142
143set (CMAKE_EXPORT_COMPILE_COMMANDS ON)
144
Ed Tanousb01bf292019-03-25 19:25:26 +0000145set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS} -Wall")
Ed Tanous1e439872018-05-18 11:48:52 -0700146
Ed Tanous271584a2019-07-09 16:24:22 -0700147set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} \
148 -fno-rtti \
149")
150
James Feist41d1d182019-10-18 13:57:16 -0700151set (
152 CMAKE_CXX_FLAGS
153 "${CMAKE_CXX_FLAGS} \
Ed Tanousa9cbc9c2019-10-24 09:58:39 -0700154 -Wall \
155 -Wextra \
156 -Wnon-virtual-dtor \
157 -Wold-style-cast \
158 -Wcast-align \
159 -Wunused \
160 -Woverloaded-virtual \
161 -Wpedantic \
162 -Wconversion \
163 -Wsign-conversion \
164 -Wnull-dereference \
165 -Wdouble-promotion \
166 -Wformat=2 \
167 -Wno-unused-parameter \
James Feist41d1d182019-10-18 13:57:16 -0700168"
169)
Ed Tanous271584a2019-07-09 16:24:22 -0700170
171# only set -Werror if we're on a compiler that we know passes
172if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
James Feist41d1d182019-10-18 13:57:16 -0700173 if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 8.0)
174 set (
175 CMAKE_CXX_FLAGS
176 "${CMAKE_CXX_FLAGS} \
Ed Tanousa9cbc9c2019-10-24 09:58:39 -0700177 -Werror \
178 -Wduplicated-cond \
179 -Wduplicated-branches \
180 -Wlogical-op \
181 -Wnull-dereference \
182 -Wdouble-promotion \
183 -Wformat=2 \
184 -Wno-unused-parameter \
James Feist41d1d182019-10-18 13:57:16 -0700185 "
186 )
187 endif (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 8.0)
Ed Tanous271584a2019-07-09 16:24:22 -0700188endif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
189
Ed Tanous1e439872018-05-18 11:48:52 -0700190set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-rtti")
Ed Tanous3dac7492017-08-02 13:46:20 -0700191
Ed Tanous0fdddb12017-02-28 11:06:34 -0800192# general
Ed Tanous797d0c02018-08-07 10:22:35 -0700193option (BMCWEB_BUILD_UT "Enable Unit test" OFF)
Ed Tanous8041f312017-04-03 09:47:01 -0700194
Ed Tanous1ccd57c2017-03-21 13:15:58 -0700195# security flags
James Feist41d1d182019-10-18 13:57:16 -0700196set (
197 SECURITY_FLAGS
198 "-fstack-protector-strong \
Ed Tanous580f3722018-03-13 16:59:02 -0700199 -fPIE \
200 -fPIC \
201 -D_FORTIFY_SOURCE=2 \
202 -Wformat \
James Feist41d1d182019-10-18 13:57:16 -0700203 -Wformat-security"
Ed Tanousf0d73c22018-07-26 14:24:20 -0700204)
James Feist41d1d182019-10-18 13:57:16 -0700205set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} ${SECURITY_FLAGS}")
206set (CMAKE_CXX_FLAGS_RELWITHDEBINFO
207 "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} ${SECURITY_FLAGS}")
Ed Tanous1e439872018-05-18 11:48:52 -0700208set (CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} ${SECURITY_FLAGS}")
Ed Tanous3dac7492017-08-02 13:46:20 -0700209
Ed Tanous580f3722018-03-13 16:59:02 -0700210# Enable link time optimization This is a temporary workaround because
211# INTERPROCEDURAL_OPTIMIZATION isn't available until cmake 3.9. gcc-ar and gcc-
212# ranlib are wrappers around ar and ranlib which add the lto plugin to the
213# command line.
Ed Tanous1e439872018-05-18 11:48:52 -0700214if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
215 if (NOT CMAKE_BUILD_TYPE MATCHES Debug)
216 string (REGEX REPLACE "ar$" "gcc-ar" CMAKE_AR ${CMAKE_AR})
James Feist41d1d182019-10-18 13:57:16 -0700217 string (REGEX
218 REPLACE "ranlib$" "gcc-ranlib" CMAKE_RANLIB ${CMAKE_RANLIB})
Ed Tanous1e439872018-05-18 11:48:52 -0700219 set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -flto -fno-fat-lto-objects")
Borawski.Lukasz109799e2018-01-30 15:04:42 +0100220
Ed Tanous1e439872018-05-18 11:48:52 -0700221 # Reduce the binary size by removing unnecessary dynamic symbol table
222 # entries
James Feist41d1d182019-10-18 13:57:16 -0700223 set (
224 CMAKE_CXX_FLAGS
225 "${CMAKE_CXX_FLAGS} \
Ed Tanous580f3722018-03-13 16:59:02 -0700226 -fvisibility=hidden \
227 -fvisibility-inlines-hidden \
James Feist41d1d182019-10-18 13:57:16 -0700228 -Wl,--exclude-libs,ALL"
229 )
Ed Tanous1e439872018-05-18 11:48:52 -0700230 endif (NOT CMAKE_BUILD_TYPE MATCHES Debug)
231endif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
Borawski.Lukasz109799e2018-01-30 15:04:42 +0100232
Ed Tanous1e439872018-05-18 11:48:52 -0700233if (NOT ${YOCTO_DEPENDENCIES}) # Download and unpack googletest at configure
234 # time
235 configure_file (CMakeLists.txt.in 3rdparty/CMakeLists.txt)
James Feist41d1d182019-10-18 13:57:16 -0700236 execute_process (COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" .
237 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/3rdparty)
238 execute_process (COMMAND ${CMAKE_COMMAND} --build .
239 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/3rdparty)
Ed tanous7d95f5f2018-03-23 00:19:20 -0700240
Ed Tanous1e439872018-05-18 11:48:52 -0700241 set (CMAKE_PREFIX_PATH ${CMAKE_BINARY_DIR}/prefix ${CMAKE_PREFIX_PATH})
242endif ()
Ed tanous7d95f5f2018-03-23 00:19:20 -0700243
Ed Tanousbd81d6a2019-10-24 10:00:42 -0700244find_package (Boost 1.71 REQUIRED)
Ed Tanous271584a2019-07-09 16:24:22 -0700245include_directories (SYSTEM ${BOOST_SRC_DIR})
246
Ed Tanous580f3722018-03-13 16:59:02 -0700247# add_definitions(-DBOOST_ASIO_ENABLE_HANDLER_TRACKING)
Ed Tanousd3a38062018-07-27 12:06:29 -0700248add_definitions (-DBOOST_ASIO_DISABLE_THREADS)
Ed Tanous39e77502019-03-04 17:35:53 -0800249add_definitions (-DBOOST_BEAST_USE_STD_STRING_VIEW)
Ed Tanous1e439872018-05-18 11:48:52 -0700250add_definitions (-DBOOST_ERROR_CODE_HEADER_ONLY)
251add_definitions (-DBOOST_SYSTEM_NO_DEPRECATED)
James Feist41d1d182019-10-18 13:57:16 -0700252message (BOOST_VERSION = ${Boost_VERSION})
Ed Tanous271584a2019-07-09 16:24:22 -0700253if ("${Boost_VERSION}" STREQUAL "107100")
254 add_definitions (-DBOOST_ASIO_NO_DEPRECATED)
James Feist41d1d182019-10-18 13:57:16 -0700255endif ()
Ed Tanous1e439872018-05-18 11:48:52 -0700256add_definitions (-DBOOST_ALL_NO_LIB)
257add_definitions (-DBOOST_NO_RTTI)
258add_definitions (-DBOOST_NO_TYPEID)
Ed Tanousc85eb8b2018-10-16 14:59:20 -0700259add_definitions (-DBOOST_COROUTINES_NO_DEPRECATION_WARNING)
Ed tanous7d95f5f2018-03-23 00:19:20 -0700260
Ed Tanousaa2e59c2018-04-12 12:17:20 -0700261# sdbusplus
Ed Tanous1e439872018-05-18 11:48:52 -0700262if (NOT ${YOCTO_DEPENDENCIES})
Ed Tanous271584a2019-07-09 16:24:22 -0700263 include_directories (SYSTEM ${CMAKE_BINARY_DIR}/sdbusplus-src)
James Feista975e9f2018-08-08 14:03:49 -0700264 link_directories (${CMAKE_BINARY_DIR}/sdbusplus-src/.libs)
Ed Tanous1e439872018-05-18 11:48:52 -0700265endif ()
Ed Tanous0fdddb12017-02-28 11:06:34 -0800266
Ed Tanous580f3722018-03-13 16:59:02 -0700267# Openssl
Ed Tanous1e439872018-05-18 11:48:52 -0700268find_package (OpenSSL REQUIRED)
Ed Tanous271584a2019-07-09 16:24:22 -0700269include_directories (SYSTEM ${OPENSSL_INCLUDE_DIR})
Ed Tanous1e439872018-05-18 11:48:52 -0700270message ("OPENSSL_INCLUDE_DIR ${OPENSSL_INCLUDE_DIR}")
Ed Tanous0fdddb12017-02-28 11:06:34 -0800271
Ed Tanous55c7b7a2018-05-22 15:27:24 -0700272# bmcweb
Ed Tanous1e439872018-05-18 11:48:52 -0700273message ("CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}")
274if (CMAKE_BUILD_TYPE MATCHES Debug)
275 message ("Logging disabled")
Ed Tanous55c7b7a2018-05-22 15:27:24 -0700276 add_definitions (-DBMCWEB_ENABLE_LOGGING)
277 add_definitions (-DBMCWEB_ENABLE_DEBUG)
Ed Tanous1e439872018-05-18 11:48:52 -0700278endif (CMAKE_BUILD_TYPE MATCHES Debug)
Ed Tanousaa2e59c2018-04-12 12:17:20 -0700279
Andrew Geissler1f2fbf22018-07-17 07:57:30 -0700280if (NOT "${BMCWEB_INSECURE_DISABLE_SSL}")
Ed Tanousa434f2b2018-07-27 13:04:22 -0700281 add_definitions (-DBMCWEB_ENABLE_SSL)
Andrew Geissler1f2fbf22018-07-17 07:57:30 -0700282endif (NOT "${BMCWEB_INSECURE_DISABLE_SSL}")
Ed Tanousc94ad492019-10-10 15:39:33 -0700283include_directories (${CMAKE_CURRENT_SOURCE_DIR}/http)
Ed Tanous0fdddb12017-02-28 11:06:34 -0800284
Ed Tanous580f3722018-03-13 16:59:02 -0700285# Zlib
Ed Tanous1e439872018-05-18 11:48:52 -0700286find_package (ZLIB REQUIRED)
Ed Tanous271584a2019-07-09 16:24:22 -0700287include_directories (SYSTEM ${ZLIB_INCLUDE_DIRS})
Ed Tanousf9273472017-02-28 16:05:13 -0800288
Ed Tanous4758d5b2017-06-06 15:28:13 -0700289# PAM
Ed Tanous1e439872018-05-18 11:48:52 -0700290option (WEBSERVER_ENABLE_PAM "enable pam authentication" ON)
291if ("${WEBSERVER_ENABLE_PAM}")
292 find_package (PAM REQUIRED)
293else ()
294 add_definitions ("-DWEBSERVER_DISABLE_PAM")
295endif ()
Ed Tanous911ac312017-08-15 09:37:42 -0700296
Ed Tanousf0d73c22018-07-26 14:24:20 -0700297add_definitions ("-Wno-attributes")
Jennifer Lee03346702018-05-23 14:05:20 -0700298# Copy pam-webserver to etc/pam.d
James Feist41d1d182019-10-18 13:57:16 -0700299install (FILES ${CMAKE_CURRENT_SOURCE_DIR}/pam-webserver DESTINATION /etc/pam.d/
300 RENAME webserver)
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800301
Ed tanous7d95f5f2018-03-23 00:19:20 -0700302# tinyxml2
Ed Tanous1e439872018-05-18 11:48:52 -0700303find_package (tinyxml2 REQUIRED)
Ed tanous7d95f5f2018-03-23 00:19:20 -0700304
Ed Tanous1e439872018-05-18 11:48:52 -0700305set (WEBSERVER_MAIN src/webserver_main.cpp)
Ed Tanousb4d29f42017-03-24 16:39:25 -0700306
Ed Tanous1e439872018-05-18 11:48:52 -0700307include_directories (${CMAKE_CURRENT_SOURCE_DIR}/include)
308include_directories (${CMAKE_CURRENT_SOURCE_DIR}/redfish-core/include)
Przemyslaw Czarnowskie13c2762019-09-02 17:32:43 +0200309include_directories (${CMAKE_CURRENT_SOURCE_DIR}/redfish-core/lib)
Ed Tanousb4d29f42017-03-24 16:39:25 -0700310
Ed Tanous1e439872018-05-18 11:48:52 -0700311file (MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/include/bmcweb)
Ed Tanous1e439872018-05-18 11:48:52 -0700312include_directories (${CMAKE_BINARY_DIR}/include)
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800313
James Feist41d1d182019-10-18 13:57:16 -0700314set (SRC_FILES redfish-core/src/error_messages.cpp
315 redfish-core/src/utils/json_utils.cpp ${GENERATED_SRC_FILES})
Ed Tanous93f987d2017-04-17 17:52:36 -0700316
Ed Tanous1e439872018-05-18 11:48:52 -0700317file (COPY src/test_resources DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
Ed Tanous911ac312017-08-15 09:37:42 -0700318
Ed Tanous38bdb982017-03-03 14:19:33 -0800319# Unit Tests
Ed Tanous1e439872018-05-18 11:48:52 -0700320if (${BMCWEB_BUILD_UT})
James Feist41d1d182019-10-18 13:57:16 -0700321 set (UT_FILES src/crow_test.cpp src/gtest_main.cpp
322 src/token_authorization_middleware_test.cpp
323 src/security_headers_middleware_test.cpp src/webassets_test.cpp
324 src/crow_getroutes_test.cpp src/ast_jpeg_decoder_test.cpp
325 src/kvm_websocket_test.cpp src/msan_test.cpp
326 src/ast_video_puller_test.cpp src/openbmc_jtag_rest_test.cpp
327 redfish-core/ut/privileges_test.cpp
328 ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp) # big list of naughty
329 # strings
330 add_custom_command (OUTPUT ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp
331 COMMAND
332 xxd -i
333 ${CMAKE_CURRENT_SOURCE_DIR}/src/test_resources/blns
334 ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp)
Ed Tanous1e439872018-05-18 11:48:52 -0700335
James Feist41d1d182019-10-18 13:57:16 -0700336 set_source_files_properties (${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp
337 PROPERTIES GENERATED TRUE)
Ed Tanous1e439872018-05-18 11:48:52 -0700338 enable_testing ()
339
340 add_executable (webtest ${SRC_FILES} ${UT_FILES})
341
342 find_package (GTest REQUIRED)
343 find_package (GMock REQUIRED)
344 target_link_libraries (webtest ${GTEST_LIBRARIES})
345 target_link_libraries (webtest ${GMOCK_LIBRARIES})
346
347 target_link_libraries (webtest pthread)
348 target_link_libraries (webtest ${OPENSSL_LIBRARIES})
349 target_link_libraries (webtest ${ZLIB_LIBRARIES})
350 target_link_libraries (webtest pam)
351 target_link_libraries (webtest tinyxml2)
Ed Tanousd425c6f2018-05-16 10:20:11 -0700352 target_link_libraries (webtest sdbusplus)
Ed Tanouse0625902018-05-16 13:35:08 -0700353 target_link_libraries (webtest -lsystemd)
Ed Tanous1e439872018-05-18 11:48:52 -0700354 target_link_libraries (webtest -lstdc++fs)
355 add_test (webtest webtest "--gtest_output=xml:webtest.xml")
356
357endif (${BMCWEB_BUILD_UT})
358
359install (DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/static/ DESTINATION share/www)
360
361# bmcweb
362add_executable (bmcweb ${WEBSERVER_MAIN} ${HDR_FILES} ${SRC_FILES})
Ed Tanous1e439872018-05-18 11:48:52 -0700363target_link_libraries (bmcweb ${OPENSSL_LIBRARIES})
364target_link_libraries (bmcweb ${ZLIB_LIBRARIES})
365target_link_libraries (bmcweb pam)
Brad Bishop79ba46f2018-11-29 10:57:31 -0500366target_link_libraries (bmcweb -latomic)
Ed Tanous1e439872018-05-18 11:48:52 -0700367target_link_libraries (bmcweb -lsystemd)
368target_link_libraries (bmcweb -lstdc++fs)
Ed Tanousd425c6f2018-05-16 10:20:11 -0700369target_link_libraries (bmcweb sdbusplus)
Ed Tanous1e439872018-05-18 11:48:52 -0700370target_link_libraries (bmcweb tinyxml2)
371install (TARGETS bmcweb DESTINATION bin)
372
Jason M. Billsc50fc5a2018-11-14 14:49:59 -0800373target_compile_definitions (
James Feist41d1d182019-10-18 13:57:16 -0700374 bmcweb PRIVATE $<$<BOOL:${BMCWEB_ENABLE_KVM}>: -DBMCWEB_ENABLE_KVM>
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200375 $<$<BOOL:${BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION}>: -DBMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION>
Adriana Kobylak1bfbe0e2019-01-17 12:08:38 -0600376 $<$<BOOL:${BMCWEB_ENABLE_VM_WEBSOCKET}>: -DBMCWEB_ENABLE_VM_WEBSOCKET>
Iwona Klimaszewskac0a1c8a2019-07-12 18:26:38 +0200377 $<$<BOOL:${BMCWEB_ENABLE_VM_NBDPROXY}>: -DBMCWEB_ENABLE_VM_NBDPROXY>
Jason M. Billsc50fc5a2018-11-14 14:49:59 -0800378 $<$<BOOL:${BMCWEB_ENABLE_DBUS_REST}>: -DBMCWEB_ENABLE_DBUS_REST>
379 $<$<BOOL:${BMCWEB_ENABLE_REDFISH}>: -DBMCWEB_ENABLE_REDFISH>
380 $<$<BOOL:${BMCWEB_ENABLE_STATIC_HOSTING}>: -DBMCWEB_ENABLE_STATIC_HOSTING>
James Feist41d1d182019-10-18 13:57:16 -0700381 $<$<BOOL:${BMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET}>:
382 -DBMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET>
383 $<$<BOOL:${BMCWEB_INSECURE_DISABLE_CSRF_PREVENTION}>:
384 -DBMCWEB_INSECURE_DISABLE_CSRF_PREVENTION>
Jason M. Billsc50fc5a2018-11-14 14:49:59 -0800385 $<$<BOOL:${BMCWEB_INSECURE_DISABLE_SSL}>: -DBMCWEB_INSECURE_DISABLE_SSL>
James Feist41d1d182019-10-18 13:57:16 -0700386 $<$<BOOL:${BMCWEB_INSECURE_DISABLE_XSS_PREVENTION}>:
387 -DBMCWEB_INSECURE_DISABLE_XSS_PREVENTION>
388 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_RAW_PECI}>:
389 -DBMCWEB_ENABLE_REDFISH_RAW_PECI>
390 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_CPU_LOG}>:
391 -DBMCWEB_ENABLE_REDFISH_CPU_LOG>
392 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_BMC_JOURNAL}>:
393 -DBMCWEB_ENABLE_REDFISH_BMC_JOURNAL>
394 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES}>:
395 -DBMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES>
396 $<$<BOOL:${BMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE}>:
397 -DBMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE>
AppaRao Pulia6349912019-10-18 17:16:08 +0530398 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE}>:
399 -DBMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE>
jayaprakash Mutyala70d1d0a2020-01-21 23:41:36 +0000400 $<$<BOOL:${BMCWEB_ENABLE_VALIDATION_UNSECURE_FEATURE}>:
401 -DBMCWEB_ENABLE_VALIDATION_UNSECURE_FEATURE>
Brad Bishopf5e906b2018-11-29 10:55:10 -0500402)
Brad Bishop5a7094b2019-04-10 19:33:15 -0400403
404# configure and install systemd unit files
405configure_file (bmcweb.socket bmcweb.socket COPYONLY)
406configure_file (bmcweb.service.in bmcweb.service)
407pkg_get_variable (SYSTEMD_SYSTEMUNITDIR systemd systemdsystemunitdir)
James Feist41d1d182019-10-18 13:57:16 -0700408install (FILES ${PROJECT_BINARY_DIR}/bmcweb.socket DESTINATION
409 ${SYSTEMD_SYSTEMUNITDIR})
410install (FILES ${PROJECT_BINARY_DIR}/bmcweb.service DESTINATION
411 ${SYSTEMD_SYSTEMUNITDIR})