-
Notifications
You must be signed in to change notification settings - Fork 29
/
CMakeLists.txt
138 lines (111 loc) · 4.18 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# #%L
# %%
# Copyright (C) 2022 BMW Car IT GmbH
# %%
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# #L%
cmake_minimum_required(VERSION 3.5)
project("MoCOCrW" LANGUAGES CXX)
include(CTest) # Enable test target in Makefile
include(GNUInstallDirs) # For standard Linux include directories
include(CMakePackageConfigHelpers) # For packaging
set(SECURITY_COMPILER_FLAGS
# Create canaries to protect RIP/RBP from stack overflows
-fstack-protector-strong
)
# By default, we do not build MoCOCrW with LibP11.
option(MOCOCRW_HSM_ENABLED "Enable HSM features" OFF)
# By default, we do not build MoCOCrW with dilithium support.
option(MOCOCRW_DILITHIUM_ENABLED "Enable Dilithium features" OFF)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
# Note that '-pie' needs to be specified as a linker flag to every executable
# individually, to ensure it has ASLR enabled on .text, .data, etc.
if(CMAKE_EXECUTABLE_FORMAT STREQUAL "ELF")
# Enable relro and BIND_NOW only if we gnerate ELF binaries
set(CMAKE_EXE_LINKER_FLAGS
# Enforce non-executable stack and read only relocations
"${CMAKE_EXE_LINKER_FLAGS} -z noexecstack -z relro -z now"
)
endif()
# Default compiler flags
set(CMAKE_CXX_STANDARD 14)
set(CXX_STANDARD_REQUIRED ON)
add_compile_options(
-Wall -Wextra -pedantic
${SECURITY_COMPILER_FLAGS}
"$<$<CONFIG:Debug>:-ggdb;-O0>"
)
# CMake modules provided by the project
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake/)
# Code coverage flags
if(CMAKE_BUILD_TYPE STREQUAL Coverage)
option(BUILD_TESTING "Build tests for all components" ON)
set(COVERAGE_BASE_DIRS
${CMAKE_CURRENT_SOURCE_DIR}/src
)
find_package(Coverage REQUIRED)
endif()
if(CMAKE_BUILD_TYPE STREQUAL ASAN)
include(AddressSanitizerTarget)
endif()
if(CMAKE_BUILD_TYPE STREQUAL UBSAN)
include(UBSanitizerTarget)
endif()
if(CMAKE_BUILD_TYPE STREQUAL TSAN)
include(ThreadSanitizerTarget)
endif()
###############################################################################
# Documentation
###############################################################################
if(BUILD_DOCUMENTATION)
find_package(Doxygen REQUIRED)
endif()
###############################################################################
# Post-build tasks
###############################################################################
if(BUILD_DOCUMENTATION)
add_subdirectory(doc)
endif()
if(MOCOCRW_DILITHIUM_ENABLED)
message(STATUS "Dilithium support is enabled. Linking libdilithium statically.")
find_package(dilithium 3.1 REQUIRED)
else()
message(WARNING "Dilithium support is disabled.")
endif()
find_package(OpenSSL REQUIRED)
if(OPENSSL_FOUND)
message(STATUS "Using OpenSSL ${OPENSSL_VERSION}")
endif()
if(MOCOCRW_HSM_ENABLED)
message(STATUS "HSM features are enabled. Building with LibP11")
find_package(LibP11 REQUIRED)
else()
message(WARNING "HSM features are disabled. Not building with LibP11")
endif()
find_package(Boost REQUIRED)
# Installation directories
set(MOCOCRW ${CMAKE_INSTALL_LIBDIR}/cmake)
set(MOCOCRW_INSTALL_LIBDIR ${CMAKE_INSTALL_LIBDIR})
set(MOCOCRW_INSTALL_BINDIR ${CMAKE_INSTALL_FULL_BINDIR})
set(EXAMPLE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/examples)
set(MOCOCRW_PROJECT_ROOT ${CMAKE_CURRENT_SOURCE_DIR})
set(MOCOCRW_INCLUDE_CONFIG_DIR ${CMAKE_BINARY_DIR}/config_include)
set(SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
#TODO set(DOC_DIR ${CMAKE_CURRENT_SOURCE_DIR}/doc)
set(TEST_DIR ${CMAKE_CURRENT_SOURCE_DIR}/tests)
# Enable all subprojects to find each other's include files
include_directories(${SRC_DIR})
include_directories(${MOCOCRW_INCLUDE_CONFIG_DIR})
add_subdirectory(${SRC_DIR})
add_subdirectory(${TEST_DIR})
add_subdirectory(${EXAMPLE_DIR})