-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCMakeLists.txt
37 lines (29 loc) · 1.02 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
# 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 GOLIB)
message(
FATAL_ERROR
"You must set the path of the vault lib, e.g., -DGOLIB=../vault/main.a")
endif ()
get_filename_component(GOLIB ${GOLIB} ABSOLUTE BASE_DIR ${CMAKE_BINARY_DIR})
if (NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Debug)
endif ()
add_executable(enclave main.c)
target_link_libraries(enclave openenclave::oeenclave openenclave::ertdeventry
${GOLIB})
# 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)