blob: 1fc7796aa15de7c56a051bfdab94d776af62d572 [file] [log] [blame]
Ed Tanous0fdddb12017-02-28 11:06:34 -08001cmake_minimum_required(VERSION 2.8.10 FATAL_ERROR)
2
3cmake_policy(SET CMP0054 OLD)
4
5set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
6
7message("${CMAKE_MODULE_PATH}")
8
Ed Tanous93f987d2017-04-17 17:52:36 -07009SET(BUILD_SHARED_LIBRARIES OFF)
10
Ed Tanous9b65f1f2017-03-07 15:17:13 -080011#SET(HUNTER_STATUS_DEBUG ON)
Ed Tanous0fdddb12017-02-28 11:06:34 -080012
Ed Tanous9140a672017-04-24 17:01:32 -070013#SET(MSAN_CXX_FLAGS "-fsanitize=memory -stdlib=libc++ -I/home/ed/libcxx_msan/include -I/home/ed/libcxx_msan/include/c++/v1")
14#SET(MSAN_LINKER_EXE_FLAGS "${MSAN_CXX_FLAGS} -lc++abi -L/home/ed/libcxx_msan/lib -Wl,-rpath,I/home/ed/libcxx_msan/lib")
Ed Tanous1ccd57c2017-03-21 13:15:58 -070015
Ed Tanous01250f22017-04-18 17:49:51 -070016#SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${MSAN_CXX_FLAGS}")
17#SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${MSAN_LINKER_EXE_FLAGS}")
18
Ed Tanous9140a672017-04-24 17:01:32 -070019# Debug information
20SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -fno-omit-frame-pointer")
Ed Tanous01250f22017-04-18 17:49:51 -070021
Ed Tanousa1e077c2017-04-25 12:42:19 -070022#SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-rtti")
23#SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-rtti")
24
Ed Tanous1ccd57c2017-03-21 13:15:58 -070025include("cmake/HunterGate.cmake")
Ed Tanous0fdddb12017-02-28 11:06:34 -080026HunterGate(
Ed Tanousa1e077c2017-04-25 12:42:19 -070027 URL "https://github.com/ruslo/hunter/archive/v0.18.44.tar.gz"
28 SHA1 "a78f0b377b8e53c038f12fc18b0c02564c4534c8"
Ed Tanous0fdddb12017-02-28 11:06:34 -080029)
30
Ed Tanous1ccd57c2017-03-21 13:15:58 -070031
Ed Tanous0fdddb12017-02-28 11:06:34 -080032option(BUILD_FOR_EMBEDDED "Build for device target" ON)
33
34project(bmc-webserver CXX C)
35
36set(CMAKE_CXX_STANDARD 14)
37set(CMAKE_CXX_STANDARD_REQUIRED ON)
38
39set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
40
41if ( ${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR} )
42 message( FATAL_ERROR "In-source builds not allowed. Please make a new directory (usually called build) and run CMake from there. You may need to remove CMakeCache.txt." )
43endif()
44
45# general
Ed Tanous38bdb982017-03-03 14:19:33 -080046option(BUILD_SHARED_LIBS "Build as shared library" OFF)
Ed Tanous93f987d2017-04-17 17:52:36 -070047option(BUILD_UT "Enable Unit test" ON)
Ed Tanous0fdddb12017-02-28 11:06:34 -080048
Ed Tanous8041f312017-04-03 09:47:01 -070049# This needs to be before the crow and other module includes so headers get overriden correctly
50include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
51
Ed Tanous1ccd57c2017-03-21 13:15:58 -070052# security flags
53#SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fstack-protector-strong -fPIE -fPIC -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security" )
54#SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -z noexecstack -z relro -z now")
55
Ed Tanous0fdddb12017-02-28 11:06:34 -080056# Boost
Ed Tanousa1e077c2017-04-25 12:42:19 -070057#add_definitions(-DBOOST_NO_RTTI -DBOOST_NO_TYPEID)
58
Ed Tanous1ccd57c2017-03-21 13:15:58 -070059#add_definitions(-DBOOST_ASIO_ENABLE_HANDLER_TRACKING)
Ed Tanous01250f22017-04-18 17:49:51 -070060add_definitions(-DBOOST_ERROR_CODE_HEADER_ONLY)
61add_definitions(-DBOOST_SYSTEM_NO_DEPRECATED)
Ed Tanous0fdddb12017-02-28 11:06:34 -080062add_definitions(-DBOOST_ALL_NO_LIB)
63set(Boost_USE_STATIC_LIBS ON)
Ed Tanous9140a672017-04-24 17:01:32 -070064hunter_add_package(Boost COMPONENTS system)
65find_package(Boost COMPONENTS system)
Ed Tanous0fdddb12017-02-28 11:06:34 -080066
67#Openssl
Ed Tanous9b65f1f2017-03-07 15:17:13 -080068hunter_add_package(OpenSSL)
Ed Tanous0fdddb12017-02-28 11:06:34 -080069find_package(OpenSSL REQUIRED)
Ed Tanous0fdddb12017-02-28 11:06:34 -080070
Ed Tanous0fdddb12017-02-28 11:06:34 -080071#g3 logging
Ed Tanous1ccd57c2017-03-21 13:15:58 -070072# G3logger does some unfortunate compile options, so cheat a little bit and copy/paste
Ed Tanous1ccd57c2017-03-21 13:15:58 -070073set(LOG_SRC ${CMAKE_CURRENT_SOURCE_DIR}/g3log/src)
74
75file(GLOB_RECURSE SRC_FILES ${LOG_SRC}/*.cpp ${LOG_SRC}/*.ipp)
76file(GLOB_RECURSE HEADER_FILES ${LOG_SRC}/*.hpp)
77
78IF (MSVC OR MINGW)
Ed Tanousa1e077c2017-04-25 12:42:19 -070079 list(REMOVE_ITEM SRC_FILES ${LOG_SRC}/crashhandler_unix.cpp)
Ed Tanous1ccd57c2017-03-21 13:15:58 -070080ELSE()
Ed Tanousa1e077c2017-04-25 12:42:19 -070081 list(REMOVE_ITEM SRC_FILES ${LOG_SRC}/crashhandler_windows.cpp ${LOG_SRC}/g3log/stacktrace_windows.hpp ${LOG_SRC}/stacktrace_windows.cpp)
Ed Tanous1ccd57c2017-03-21 13:15:58 -070082ENDIF (MSVC OR MINGW)
83
84# Create the g3log library
85include_directories(${LOG_SRC})
Ed Tanous8041f312017-04-03 09:47:01 -070086
Ed Tanous1ccd57c2017-03-21 13:15:58 -070087add_library(g3logger ${SRC_FILES})
Ed Tanous9140a672017-04-24 17:01:32 -070088# clean up some warnings in files we don't own
Ed Tanous7d3dba42017-04-05 13:04:39 -070089if(("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU") OR ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang"))
90 set_source_files_properties(g3log/src/logcapture.cpp PROPERTIES COMPILE_FLAGS -Wno-braced-scalar-init)
91 set_source_files_properties(g3log/src/filesink.cpp PROPERTIES COMPILE_FLAGS -Wno-braced-scalar-init)
92 set_source_files_properties(g3log/src/logworker.cpp PROPERTIES COMPILE_FLAGS -Wno-braced-scalar-init)
93endif()
94
Ed Tanous1ccd57c2017-03-21 13:15:58 -070095set_target_properties(g3logger PROPERTIES
96 LINKER_LANGUAGE CXX
97 OUTPUT_NAME g3logger
98 CLEAN_DIRECT_OUTPUT 1)
99target_link_libraries(g3logger ${PLATFORM_LINK_LIBRIES})
Ed Tanous8041f312017-04-03 09:47:01 -0700100
Ed Tanous93f987d2017-04-17 17:52:36 -0700101#lib jpeg
102set(BUILD_STATIC ON)
103#include_directories(libjpeg)
104#include_directories(${CMAKE_CURRENT_BINARY_DIR}/libjpeg)
105#add_subdirectory(libjpeg)
106
Ed Tanous8041f312017-04-03 09:47:01 -0700107
108# Crow
Ed Tanous9140a672017-04-24 17:01:32 -0700109add_definitions(-DCROW_DISABLE_LOGGING)
Ed Tanous8041f312017-04-03 09:47:01 -0700110add_definitions(-DCROW_ENABLE_SSL)
111include_directories( ${CMAKE_CURRENT_SOURCE_DIR}/crow/include)
Ed Tanous0fdddb12017-02-28 11:06:34 -0800112
Ed Tanous9b65f1f2017-03-07 15:17:13 -0800113#Zlib
Ed Tanous7d3dba42017-04-05 13:04:39 -0700114hunter_add_package(ZLIB)
115find_package(ZLIB REQUIRED)
Ed Tanous9b65f1f2017-03-07 15:17:13 -0800116
Ed Tanousf9273472017-02-28 16:05:13 -0800117# C++ GSL (Guideline support libraries)
Ed Tanous9b65f1f2017-03-07 15:17:13 -0800118include_directories(gsl-lite/include)
Ed Tanousf9273472017-02-28 16:05:13 -0800119
120set(WEBSERVER_MAIN src/webserver_main.cpp)
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800121
Ed Tanous904063f2017-03-02 16:48:24 -0800122set(HDR_FILES
Ed Tanous8041f312017-04-03 09:47:01 -0700123 include/crow/g3_logger.hpp
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800124 include/ssl_key_handler.hpp
125 include/color_cout_g3_sink.hpp
Ed Tanous904063f2017-03-02 16:48:24 -0800126)
127
128set(GENERATED_SRC_FILES
129 ${CMAKE_BINARY_DIR}/generated/webassets.cpp
Ed Tanousb4a7bfa2017-04-04 17:23:00 -0700130 ${CMAKE_BINARY_DIR}/generated/webassets.hpp
Ed Tanous904063f2017-03-02 16:48:24 -0800131)
132
Ed Tanousb4a7bfa2017-04-04 17:23:00 -0700133include_directories(${CMAKE_BINARY_DIR}/generated)
134
Ed Tanous9b65f1f2017-03-07 15:17:13 -0800135set_source_files_properties(${GENERATED_SRC_FILES} PROPERTIES GENERATED TRUE)
Ed Tanous904063f2017-03-02 16:48:24 -0800136
Ed Tanousb4d29f42017-03-24 16:39:25 -0700137if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
138 if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0)
139 set_source_files_properties(${CMAKE_BINARY_DIR}/generated/webassets.cpp PROPERTIES COMPILE_FLAGS -Wno-narrowing)
140 endif(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0)
141endif()
142
143
Ed Tanous904063f2017-03-02 16:48:24 -0800144set(SRC_FILES
Ed Tanousf9273472017-02-28 16:05:13 -0800145 src/token_authorization_middleware.cpp
Ed Tanous8041f312017-04-03 09:47:01 -0700146 src/security_headers_middleware.cpp
Ed Tanousf9273472017-02-28 16:05:13 -0800147 src/base64.cpp
Ed Tanous904063f2017-03-02 16:48:24 -0800148 ${GENERATED_SRC_FILES}
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800149)
150
Ed Tanousf9273472017-02-28 16:05:13 -0800151set(UT_FILES
Ed Tanous7d3dba42017-04-05 13:04:39 -0700152 g3log/test_unit/test_cpp_future_concepts.cpp
153 g3log/test_unit/tester_sharedlib.cpp
154 # TODO(ed) figure out why this unit test has a main function in it
155 #g3log/test_unit/test_filechange.cpp
156 g3log/test_unit/testing_helpers.h
157 #TODO(ed)
158 #g3log/test_unit/test_linux_dynamic_loaded_sharedlib.cpp
159 #g3log/test_unit/test_sink.cpp
160 g3log/test_unit/test_concept_sink.cpp
161 g3log/test_unit/test_crashhandler_windows.cpp
162 g3log/test_unit/tester_sharedlib.h
163 g3log/test_unit/testing_helpers.cpp
164 g3log/test_unit/test_io.cpp
165 g3log/test_unit/test_message.cpp
Ed Tanous9140a672017-04-24 17:01:32 -0700166 src/crow_test.cpp
Ed Tanousf9273472017-02-28 16:05:13 -0800167 src/gtest_main.cpp
168 src/base64_test.cpp
169 src/token_authorization_middleware_test.cpp
Ed Tanousb4a7bfa2017-04-04 17:23:00 -0700170 src/security_headers_middleware_test.cpp
171 src/webassets_test.cpp
172 src/crow_getroutes_test.cpp
Ed Tanous93f987d2017-04-17 17:52:36 -0700173 src/ast_jpeg_decoder_test.cpp
Ed Tanous9140a672017-04-24 17:01:32 -0700174 src/kvm_websocket_test.cpp
175 src/test_utils.cpp
Ed Tanous01250f22017-04-18 17:49:51 -0700176 src/msan_test.cpp
Ed Tanous9140a672017-04-24 17:01:32 -0700177 src/ci_map_tests.cpp
Ed Tanous01250f22017-04-18 17:49:51 -0700178
Ed Tanousf9273472017-02-28 16:05:13 -0800179 ${CMAKE_BINARY_DIR}/generated/blns.hpp
180)
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800181
Ed Tanous93f987d2017-04-17 17:52:36 -0700182
Ed Tanous9b65f1f2017-03-07 15:17:13 -0800183file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/generated")
184
Ed Tanous93f987d2017-04-17 17:52:36 -0700185file(COPY src/test_resources DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
186
Ed Tanous38bdb982017-03-03 14:19:33 -0800187# Unit Tests
188if(${BUILD_UT})
Ed Tanous9b65f1f2017-03-07 15:17:13 -0800189 # big list of naughty strings
190 add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/generated/blns.hpp
Ed Tanous28c9aeb2017-04-24 17:04:04 -0700191 COMMAND xxd -i ${CMAKE_CURRENT_SOURCE_DIR}/src/test_resources/blns.txt ${CMAKE_BINARY_DIR}/generated/blns.hpp)
Ed Tanous9b65f1f2017-03-07 15:17:13 -0800192
Ed Tanous38bdb982017-03-03 14:19:33 -0800193 # googletest
194 enable_testing()
Ed Tanous01250f22017-04-18 17:49:51 -0700195 #hunter_add_package(GTest)
196 add_subdirectory(googletest)
197 #find_package(GMock CONFIG REQUIRED)
Ed Tanous38bdb982017-03-03 14:19:33 -0800198
199 add_executable(unittest ${HDR_FILES} ${SRC_FILES} ${UT_FILES})
Ed Tanous01250f22017-04-18 17:49:51 -0700200 target_link_libraries(unittest gmock gtest)
201 target_link_libraries(unittest pthread)
Ed Tanous38bdb982017-03-03 14:19:33 -0800202 target_link_libraries(unittest OpenSSL::SSL OpenSSL::Crypto)
203 target_link_libraries(unittest g3logger)
Ed Tanous7d3dba42017-04-05 13:04:39 -0700204 target_link_libraries(unittest ${ZLIB_LIBRARIES})
Ed Tanous38bdb982017-03-03 14:19:33 -0800205 add_dependencies(unittest packagestaticcpp)
206endif(${BUILD_UT})
Ed Tanous904063f2017-03-02 16:48:24 -0800207
208# web static assets
209add_subdirectory(static)
Ed Tanousf9273472017-02-28 16:05:13 -0800210
211# bmcweb
Ed Tanous904063f2017-03-02 16:48:24 -0800212add_executable(bmcweb ${WEBSERVER_MAIN} ${HDR_FILES} ${SRC_FILES})
Ed Tanous01250f22017-04-18 17:49:51 -0700213target_link_libraries(bmcweb pthread)
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800214target_link_libraries(bmcweb OpenSSL::SSL OpenSSL::Crypto)
Ed Tanous9140a672017-04-24 17:01:32 -0700215target_link_libraries(bmcweb Boost::system)
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800216target_link_libraries(bmcweb g3logger)
Ed Tanous9b65f1f2017-03-07 15:17:13 -0800217target_link_libraries(bmcweb ${ZLIB_LIBRARIES})
Ed Tanous904063f2017-03-02 16:48:24 -0800218add_dependencies(bmcweb packagestaticcpp)
Ed Tanousf9273472017-02-28 16:05:13 -0800219
Ed Tanous93f987d2017-04-17 17:52:36 -0700220# udpclient
Ed Tanous9140a672017-04-24 17:01:32 -0700221#add_executable(udpclient src/udpclient.cpp)
222#target_link_libraries(udpclient pthread)
Ed Tanous1ccd57c2017-03-21 13:15:58 -0700223
Ed Tanous1ccd57c2017-03-21 13:15:58 -0700224add_executable(getvideo src/getvideo_main.cpp)
Ed Tanous01250f22017-04-18 17:49:51 -0700225target_link_libraries(getvideo pthread)
Ed Tanousd5f39992017-04-18 13:41:22 -0700226target_link_libraries(getvideo g3logger)
Ed Tanous1ccd57c2017-03-21 13:15:58 -0700227
Ed Tanous38bdb982017-03-03 14:19:33 -0800228# Visual Studio Code helper
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800229# this needs to be at the end to make sure all includes are handled correctly
Ed Tanous93f987d2017-04-17 17:52:36 -0700230
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800231get_property(C_INCLUDE_DIRS DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY INCLUDE_DIRECTORIES)
Ed Tanous01250f22017-04-18 17:49:51 -0700232execute_process(COMMAND python3 ${CMAKE_CURRENT_SOURCE_DIR}/scripts/prime_vscode_compile_db.py ${C_INCLUDE_DIRS})