Example, ``` ######## APP Settings ########
App_Rust_Flags := --release App_SRC_Files := $(shell find app/ -type f -name '*.rs') $(shell find app/ -type f -name 'Cargo.toml') App_Include_Paths := -I ./app -I./include -I$(SGX_SDK)/include -I$(CUSTOM_EDL_PATH) App_C_Flags := $(SGX_COMMON_CFLAGS) -fPIC -Wno-attributes $(App_Include_Paths) App_Rust_Path := ./app/target/release App_Enclave_u_Object :=lib/libEnclave_u.a App_Name := bin/app ``` I'd like to add another enclave but want to ensure the /app knows that it exists. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/apache/incubator-teaclave-sgx-sdk/issues/328#issuecomment-804135767
