-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
566 lines (494 loc) · 18.5 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
# Copyright (c) Open Enclave SDK contributors.
# Licensed under the MIT License.
#
# Top-level CMake file for the Open Enclave SDK
#
# Please read The Ultimate Guide to CMake:
# https://rix0r.nl/blog/2015/08/13/cmake-guide/
set(CMAKE_VERBOSE_MAKEFILE on)
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
if (${CMAKE_VERSION} GREATER_EQUAL "3.24.0")
# Suppress error when using FetchContent_Declare in subprojects
cmake_policy(SET CMP0135 NEW)
endif ()
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
# Include utilities such as `check_submodule_not_empty`.
include(utilities)
# Read version from "VERSION" file.
file(STRINGS "VERSION" OE_VERSION_WITH_V)
string(REGEX REPLACE "^v" "" OE_VERSION ${OE_VERSION_WITH_V})
# Temporary fix to account for differences in expected version numbers
# between Debian packages and NuGet packages.
if (WIN32)
string(REGEX REPLACE "~" "-" OE_VERSION ${OE_VERSION})
endif ()
# Select the assembler
# TODO: See #755: This should probably be removed
if (UNIX)
set(OE_ASM ASM)
elseif (WIN32)
set(OE_ASM ASM_MASM)
endif ()
# Will be overwritten during the cmake initialization.
# Value can be one of "None", "ControlFlow-GNU", ""ControlFlow-Clang" and "ControlFlow" (which is alias to ControlFlow-GNU)
# If None, no LVI mitigation will be applied
# If ControlFlow, only control-flow mitigations will be applied
# If ControlFlow-Clang, the Clang's built-in mitigation will be applied (only support clang-11 and later)
# If ControlFlow-GNU, the custom mitigation will be applied
# Support of full-LVI hardening (-mlvi-hardening) is omitted
set(LVI_MITIGATION
"None"
CACHE
STRING
"Build with LVI mitigation. Options: [None, ControlFlow, ControlFlow-GNU, ControlFlow-Clang]"
)
set(LVI_MITIGATION_BINDIR
"None"
CACHE STRING "Path to the LVI mitigation bindir.")
# alias ControlFlow to ControlFlow-GNU
if (LVI_MITIGATION STREQUAL "ControlFlow")
set(LVI_MITIGATION "ControlFlow-GNU")
endif ()
# On Unix, configuring cmake to use the preferred compiler.
# Note that this must be done before the `project` command.
if (UNIX)
if (LVI_MITIGATION STREQUAL ControlFlow-GNU)
if (${LVI_MITIGATION_BINDIR} MATCHES None)
message(FATAL_ERROR "LVI_MITIGATION_BINDIR is not specified.")
endif ()
# If the LVI mitigation is enabled, use the customized compilation toolchain.
include(configure_lvi_mitigation_build)
configure_lvi_mitigation_build(BINDIR ${LVI_MITIGATION_BINDIR})
else ()
# For the normal build, if the CC environment variable has been specified or if
# the CMAKE_C_COMPILER cmake variable has been passed to cmake, use the C compiler
# that has been specified. Otherwise, prefer clang. Same for C++ compiler.
if (NOT DEFINED ENV{CC} AND NOT DEFINED CMAKE_C_COMPILER)
find_program(CMAKE_C_COMPILER NAMES clang-14 clang-11 clang-10 clang)
endif ()
if (NOT DEFINED ENV{CXX} AND NOT DEFINED CMAKE_CXX_COMPILER)
find_program(CMAKE_CXX_COMPILER NAMES clang++-14 clang++-11 clang++-10 clang++)
endif ()
endif ()
# On Windows, find if Clang is available and determine the version
elseif (WIN32)
find_program(
CLANG_C_COMPILER
NAMES clang
PATHS "C:/Program Files/LLVM/bin")
if (CLANG_C_COMPILER)
execute_process(
COMMAND ${CLANG_C_COMPILER} --version
OUTPUT_VARIABLE CLANG_C_COMPILER_VERSION
OUTPUT_STRIP_TRAILING_WHITESPACE)
if (CLANG_C_COMPILER_VERSION MATCHES
"clang version ([0-9]+\.[0-9]+\.[0-9]+)")
set(CLANG_C_COMPILER_VERSION ${CMAKE_MATCH_1})
else ()
message(WARNING "Could not determine the version of ${CLANG_C_COMPILER}.")
endif ()
else ()
message(WARNING "Could not find an installed version of Clang.")
endif ()
endif ()
project(
"Open Enclave SDK"
LANGUAGES C CXX ${OE_ASM}
HOMEPAGE_URL "https://github.com/openenclave/openenclave")
set(PROJECT_VERSION ${OE_VERSION})
set(OE_SCRIPTSDIR "${PROJECT_SOURCE_DIR}/scripts")
if (LVI_MITIGATION STREQUAL ControlFlow-Clang)
if (UNIX)
if (NOT CMAKE_C_COMPILER_ID MATCHES Clang)
message(
FATAL_ERROR
"ControlFlow-Clang requires Clang but got ${CMAKE_C_COMPILER_ID}.")
elseif (CMAKE_C_COMPILER_VERSION VERSION_LESS 11)
message(
FATAL_ERROR
"ControlFlow-Clang requires Clang version >= 11 but got ${CMAKE_C_COMPILER_VERSION}."
)
endif ()
elseif (WIN32)
if (NOT CLANG_C_COMPILER)
message(FATAL_ERROR "ControlFlow-Clang requires Clang to be installed.")
elseif (CLANG_C_COMPILER_VERSION VERSION_LESS 11)
message(
FATAL_ERROR
"ControlFlow-Clang only works with Clang version >= 11. But got ${CLANG_C_COMPILER_VERSION}"
)
endif ()
endif ()
endif ()
# Collect Git info
if (IS_DIRECTORY "${PROJECT_SOURCE_DIR}/.git")
execute_process(
COMMAND git rev-parse HEAD
OUTPUT_VARIABLE GIT_COMMIT
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE)
execute_process(
COMMAND git symbolic-ref HEAD
OUTPUT_VARIABLE GIT_BRANCH
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE)
# Install Git pre-commit hook
file(COPY scripts/pre-commit scripts/commit-msg
DESTINATION "${PROJECT_SOURCE_DIR}/.git/hooks")
endif ()
# Generates `compile_commands.json` used by some developers. Only
# supported by Makefile and Ninja generators, but is otherwise
# ignored.
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
if ("${CMAKE_BUILD_TYPE}" STREQUAL "")
set(CMAKE_BUILD_TYPE "Debug")
endif ()
# Validate CMAKE_BUILD_TYPE
string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
list(APPEND uppercase_build_type "DEBUG" "RELEASE" "RELWITHDEBINFO")
if (NOT uppercase_CMAKE_BUILD_TYPE IN_LIST uppercase_build_type)
message(FATAL_ERROR "UNKNOWN CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}")
endif ()
if (uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE")
message(
WARNING "The `Release` build type has been deprecated. "
"Build problems may occur. Consider using `RelWithDebInfo` instead."
)
endif ()
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
# Get Jenkins build number
if (DEFINED ENV{BUILD_NUMBER})
set(BUILD_NUMBER $ENV{BUILD_NUMBER})
else ()
set(BUILD_NUMBER "0")
endif ()
# Set the architecture. We do this before the compiler settings, since some
# of them are arch specific.
if (CMAKE_SYSTEM_PROCESSOR MATCHES "amd64.*|x86_64.*|AMD64.*")
# TODO: Right now assume it's Intel+SGX for x86_64 processors
set(OE_SGX 1)
elseif (CMAKE_SYSTEM_PROCESSOR MATCHES "arm.*|ARM.*|aarch64.*|AARCH64.*")
set(OE_TRUSTZONE 1)
else ()
message(
FATAL_ERROR
"Unknown processor. Only Intel SGX and ARM TrustZone are supported")
endif ()
if (OE_SGX)
if (WIN32)
# Building enclaves on windows is on by default but can be disabled for enclaves pre-compiled under linux
option(BUILD_ENCLAVES "Build ELF enclaves" ON)
else ()
set(BUILD_ENCLAVES ON)
endif ()
if (BUILD_ENCLAVES AND WIN32)
# Search for prerequisites
find_program(CLANG clang)
if (NOT CLANG)
message(FATAL_ERROR "Clang is required to build ELF enclaves on Windows")
endif ()
# Get the list of clang specific defines and search for __clang_major__
execute_process(
COMMAND cmd.exe /c " clang -dM -E -x c nul | findstr __clang_major__ "
RESULT_VARIABLE HAD_ERROR
OUTPUT_VARIABLE CONFIG_OUTPUT)
if (HAD_ERROR)
message(FATAL_ERROR "Could not parse clang major version")
endif ()
# Format the output for a list
string(REPLACE " " ";" CONFIG_OUTPUT ${CONFIG_OUTPUT})
# Get the major version for clang
list(GET CONFIG_OUTPUT 2 MAJOR_VERSION)
if (MAJOR_VERSION VERSION_LESS 10 OR MAJOR_VERSION VERSION_GREATER 11)
message(
FATAL_ERROR
"Building ELF enclaves with Clang version ${CLANG_C_COMPILER_VERSION} is not supported.
Only Clang version 10 and 11 is supported")
endif ()
set(USE_CLANGW ON)
endif ()
else () # NOT OE_SGX
# On non-sgx enclaves are built by default on Unix
if (UNIX)
set(BUILD_ENCLAVES ON)
endif ()
endif ()
if (OE_SGX)
# Currently we only support OpenSSL on SGX.
set(BUILD_OPENSSL ON)
endif ()
set(DEFAULT_TEST_ENCLAVE_CRYPTO_LIB
"mbedtls"
CACHE STRING "Default crypto library used by the enclaves.")
string(TOLOWER "${DEFAULT_TEST_ENCLAVE_CRYPTO_LIB}"
DEFAULT_TEST_ENCLAVE_CRYPTO_LIB_LOWER)
if ((NOT DEFAULT_TEST_ENCLAVE_CRYPTO_LIB_LOWER STREQUAL "mbedtls")
AND (NOT DEFAULT_TEST_ENCLAVE_CRYPTO_LIB_LOWER STREQUAL "openssl"))
message(
FATAL_ERROR "Unsupported crypto library: ${DEFAULT_ENCLAVE_CRYPTO_LIB}")
endif ()
if ((DEFAULT_TEST_ENCLAVE_CRYPTO_LIB_LOWER STREQUAL "openssl")
AND (NOT BUILD_OPENSSL))
message(
FATAL_ERROR
"Cannot set OpenSSL as the default crypto library when BUILD_OPENSSL is OFF"
)
endif ()
if (WIN32)
# NOTE: On Windows we have found that we must use Git Bash, not the
# Bash from the Windows Subsystem for Linux. Hence this is
# explicitly searching only for Git Bash. See #1302 for more.
find_program(GIT git)
get_filename_component(GIT_DIR ${GIT} DIRECTORY)
find_program(
OE_BASH bash PATHS "C:/Program Files/Git/bin" "${GIT_DIR}/../bin"
NO_DEFAULT_PATH) # Do not find WSL bash.
if (NOT OE_BASH)
message(FATAL_ERROR "Git Bash not found!")
endif ()
# Looking for Perl and Dos2unix if BUILD_OPENSSL is ON.
if (BUILD_OPENSSL)
# OpenSSL relies on Perl to generate files (e.g., headers, assembly files, and test cases).
find_program(
OE_PERL perl
PATHS "C:/Program Files/Git/bin" "C:/Program Files/Git/usr/bin"
"${GIT_DIR}/../usr/bin" NO_DEFAULT_PATH)
if (NOT OE_PERL)
message(FATAL_ERROR "Perl not found!")
endif ()
# Dos2unix utility is used to convert CRLF to LF, which is required by some
# OpenSSL tests.
find_program(
OE_DOS2UNIX dos2unix
PATHS "C:/Program Files/Git/bin" "C:/Program Files/Git/usr/bin"
"${GIT_DIR}/../usr/bin" NO_DEFAULT_PATH)
if (NOT OE_DOS2UNIX)
message(FATAL_ERROR "Dos2unix not found!")
endif ()
endif ()
if (NOT NUGET_PACKAGE_PATH)
message(
FATAL_ERROR
"NUGET_PACKAGE_PATH not defined. Please define NUGET_PACKAGE_PATH as the path to the installed Intel and DCAP Client nuget packages."
)
endif ()
else ()
find_program(OE_BASH bash)
if (NOT OE_BASH)
message(FATAL_ERROR "Bash not found!")
endif ()
# Looking for Perl if BUILD_OPENSSL is ON.
if (BUILD_OPENSSL)
# OpenSSL relies on Perl to generate files (e.g., headers, assembly files, and test cases).
find_program(OE_PERL perl)
if (NOT OE_PERL)
message(FATAL_ERROR "Perl not found!")
endif ()
endif ()
endif ()
# See `cmake/enclave_cmake_wrappers.cmake` for wrapper functions.
include(enclave_cmake_wrappers)
# This is always included.
# maybe_build_using_clangw will be a noop if USE_CLANGW is false.
include(maybe_build_using_clangw)
# See `cmake/compiler_settings.cmake` for all compiler settings
include(compiler_settings)
# See `cmake/package_settings.cmake` for all package settings
include(package_settings)
# See `cmake/add_enclave.cmake` for enclave creation logic
include(add_enclave)
# See `cmake/fuzzer_settings.cmake` to build target with fuzzing flags enabled
include(fuzzer_settings)
# TODO: See #756: Fix this because it is incompatible with
# multi-configuration generators
if (uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG")
# In debug builds, enclaves are linked with liboedebugmalloc.a by default.
option(USE_DEBUG_MALLOC
"Build enclaves with memory leak detection capability." ON)
endif ()
option(ADD_WINDOWS_ENCLAVE_TESTS "Build Windows enclave tests" OFF)
# snmalloc uses C++17 `if constexpr` which is available in GCC 7.1 and above.
# Ubuntu 16.04's GCC is 5.4.0.
# Versions of clang which we care about support the construct.
if (CMAKE_CXX_COMPILER_ID MATCHES "GNU" AND CMAKE_CXX_COMPILER_VERSION
VERSION_LESS "7.1")
set(COMPILER_SUPPORTS_SNMALLOC off)
else ()
set(COMPILER_SUPPORTS_SNMALLOC on)
endif ()
# NOTE: Building OpenEnclave using snmalloc for memory allocation is an experimental option.
# Longer term, there will be a pluggable allocator mechanism to allow users to choose from a
# selection of allocators.
option(
USE_SNMALLOC
"[EXPERIMENTAL] Build using snmalloc. If this is not set, dlmalloc is used."
OFF)
if (NOT USE_SNMALLOC)
set(USE_DLMALLOC true)
endif ()
option(BUILD_TESTS "Build OE tests" ON)
option(ENABLE_FUZZING "Build OE with fuzzing flags enabled" OFF)
option(BUILD_OEUTIL_TOOL "Build oeutil tool" ON)
# For EEID see https://github.com/openenclave/openenclave/pull/2647
option(
WITH_EEID
"[EXPERIMENTAL] Include support for Extended Enclave Initialization Data."
OFF)
if (WITH_EEID AND OE_TRUSTZONE)
message(FATAL_ERROR "WITH_EEID is not supported on ARM yet.")
endif ()
# Option to build and expose the libgcov such that enclave applications can use.
# Note that this option is only effective when CODE_COVERAGE is not set.
option(BUILD_LIBGCOV "Build the code coverage library" OFF)
option(CODE_COVERAGE "Enable code coverage testing" OFF)
if (CODE_COVERAGE)
if (WIN32)
message(
FATAL_ERROR
"The CODE_COVERAGE option currently is not supported on Windows.")
endif ()
if (USE_DEBUG_MALLOC)
message(
FATAL_ERROR
"The CODE_COVERAGE option currently is not supported when the USE_DEBUG_MALLOC option is ON."
)
endif ()
message("-- CODE_COVERAGE set - enable code coverage tests")
if (CMAKE_C_COMPILER_ID MATCHES GNU)
message(FATAL_ERROR "Code coverage is currently only supported by clang.")
else ()
if (CMAKE_C_COMPILER_VERSION VERSION_LESS 10 OR CMAKE_C_COMPILER_VERSION
VERSION_GREATER 11.99)
message(
WARNING
"Code coverage may not work with clang versions other than 10 or 11.")
endif ()
endif ()
find_program(LCOV "lcov")
if (LCOV)
message("-- LCOV is found")
else ()
message(FATAL_ERROR "LCOV is not found.")
endif ()
add_custom_target(
code_coverage
COMMAND mkdir -p coverage
COMMAND lcov -c -i -d ${CMAKE_BINARY_DIR} --gcov-tool
${OE_SCRIPTSDIR}/code-coverage/llvm-gcov -o coverage/base.info
WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
set(FILTERED_LIST
"'${PROJECT_SOURCE_DIR}/tests/*'" "'${PROJECT_SOURCE_DIR}/3rdparty/*'"
"'${CMAKE_BINARY_DIR}/tests/*'" "'${CMAKE_BINARY_DIR}/3rdparty/*'")
add_custom_command(
TARGET code_coverage
COMMAND
lcov -c -d ${CMAKE_BINARY_DIR} --gcov-tool
${OE_SCRIPTSDIR}/code-coverage/llvm-gcov -o cov.info --rc
lcov_branch_coverage=1
COMMAND lcov -a base.info -a cov.info -o cov_total.info --rc
lcov_branch_coverage=1
COMMAND lcov --remove cov_total.info ${FILTERED_LIST} -o cov_filtered.info
--rc lcov_branch_coverage=1
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/coverage)
add_custom_command(
TARGET code_coverage
DEPENDS ${CMAKE_BINARY_DIR}/coverage/cov_filtered.info
COMMAND
${OE_SCRIPTSDIR}/code-coverage/lcov_cobertura
${CMAKE_BINARY_DIR}/coverage/cov_filtered.info -o
${CMAKE_BINARY_DIR}/coverage/coverage.xml
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR})
add_custom_target(
code_coverage_clean
COMMAND find ${CMAKE_BINARY_DIR} -type f -name '*.gcda' -delete
WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
endif ()
find_program(VALGRIND "valgrind")
if (VALGRIND)
set(MEMORYCHECK_COMMAND_OPTIONS "--leak-check=full --error-exitcode=1")
# include Dart to generate the site configuration:
# https://gitlab.kitware.com/cmake/community/wikis/doc/ctest/Generating-Testing-Files#using-cmake
include(Dart)
message(STATUS "ExperimentalMemCheck can be used to run tests under valgrind")
else ()
message(STATUS "Valgrind not found")
endif ()
# Configure testing
enable_testing()
include(add_enclave_test)
# Recurse through subdirectories
add_subdirectory(include)
add_subdirectory(host)
# Skip samples when enabling the code coverage test.
# Otherwise, all the samples need to explicitly link against the libgcov library.
if (NOT CODE_COVERAGE)
add_subdirectory(samples)
endif ()
add_subdirectory(tools)
if (BUILD_ENCLAVES)
add_subdirectory(enclave)
add_subdirectory(3rdparty)
add_subdirectory(libc)
add_subdirectory(libcxx)
add_subdirectory(syscall)
endif ()
if (OE_SGX)
add_subdirectory(debugger)
endif ()
# if (BUILD_TESTS)
# add_subdirectory(tests)
# endif ()
if (UNIX)
add_subdirectory(docs/refman)
add_subdirectory(pkgconfig)
endif ()
if (WIN32)
install(FILES ./scripts/clangw ./scripts/llvm-arw
DESTINATION ${CMAKE_INSTALL_BINDIR}/scripts/)
install(FILES ./scripts/install-windows-prereqs.ps1
DESTINATION ${CMAKE_INSTALL_BINDIR}/scripts/)
install(
FILES ./cmake/maybe_build_using_clangw.cmake
DESTINATION ${CMAKE_INSTALL_LIBDIR}/openenclave/cmake
COMPONENT OEHOSTVERIFY)
install(
FILES ./cmake/add_dcap_client_target.cmake
DESTINATION ${CMAKE_INSTALL_LIBDIR}/openenclave/cmake
COMPONENT OEHOSTVERIFY)
install(
FILES ./cmake/copy_oedebugrt_target.cmake
DESTINATION ${CMAKE_INSTALL_LIBDIR}/openenclave/cmake
COMPONENT OEHOSTVERIFY)
endif ()
# Install necessary files for LVI mitigation.
if (LVI_MITIGATION MATCHES ControlFlow)
if (UNIX)
install(
FILES ./scripts/lvi-mitigation/install_lvi_mitigation_bindir
PERMISSIONS OWNER_EXECUTE OWNER_READ GROUP_EXECUTE GROUP_READ
WORLD_EXECUTE WORLD_READ
DESTINATION ${CMAKE_INSTALL_BINDIR}/scripts/lvi-mitigation)
install(
FILES ./scripts/lvi-mitigation/generate_wrapper
PERMISSIONS OWNER_EXECUTE OWNER_READ GROUP_EXECUTE GROUP_READ
WORLD_EXECUTE WORLD_READ
DESTINATION ${CMAKE_INSTALL_BINDIR}/scripts/lvi-mitigation)
install(
FILES ./scripts/lvi-mitigation/invoke_compiler
PERMISSIONS OWNER_EXECUTE OWNER_READ GROUP_EXECUTE GROUP_READ
WORLD_EXECUTE WORLD_READ
DESTINATION ${CMAKE_INSTALL_BINDIR}/scripts/lvi-mitigation)
install(FILES ./cmake/configure_lvi_mitigation_build.cmake
DESTINATION ${CMAKE_INSTALL_LIBDIR}/openenclave/cmake)
else ()
# For Windows.
install(FILES ./scripts/lvi-mitigation/lvi-mitigation.py
DESTINATION ${CMAKE_INSTALL_BINDIR}/scripts/lvi-mitigation)
endif ()
endif ()
install(FILES LICENSE THIRD_PARTY_NOTICES
DESTINATION ${CMAKE_INSTALL_DATADIR}/openenclave/licenses)
# Configure all the CPACK settings. This must be last because
# CPack must be aware of all the component information in order
# for it to create different component based packages.
include(cpack_settings)