-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCMakeLists.txt
33 lines (25 loc) · 965 Bytes
/
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
# 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_custom_target(app ertgo build -buildmode=c-archive ${CMAKE_SOURCE_DIR}/app)
add_executable(enclave main.c)
add_dependencies(enclave app)
target_link_libraries(enclave openenclave::oeenclave openenclave::ertdeventry
${CMAKE_BINARY_DIR}/app.a)
# 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)