-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCMakeLists.txt
36 lines (28 loc) · 1 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
# Copyright (c) Edgeless Systems GmbH.
# Licensed under the MIT License.
cmake_minimum_required(VERSION 3.11)
project(sample)
find_package(OpenEnclave CONFIG REQUIRED)
if (NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Debug)
endif ()
add_subdirectory(app)
# CMake needs at least one source file even if it contains no code.
add_executable(enclave enc.c)
# Link against ertdeventry so that the application can be run with erthost.
target_link_libraries(
enclave openenclave::oeenclave
openenclave::ertdeventry # for production, link against ertmeshentry
hello)
# Generate key
add_custom_command(
OUTPUT private.pem public.pem
COMMAND openssl genrsa -out private.pem -3 3072
COMMAND openssl rsa -in private.pem -pubout -out public.pem)
# Sign enclave
add_custom_command(
OUTPUT enclave.signed
DEPENDS enclave enclave.conf private.pem
COMMAND openenclave::oesign sign -e $<TARGET_FILE:enclave> -c
${CMAKE_SOURCE_DIR}/enclave.conf -k private.pem)
add_custom_target(sign ALL DEPENDS enclave.signed)