From 4a51b36badfe3f285ed052be1c1bf09c1f929005 Mon Sep 17 00:00:00 2001 From: MaxMadMax Date: Mon, 25 Aug 2025 02:46:52 +0000 Subject: [PATCH 1/2] update url and format of README.md Signed-off-by: MaxMadMax --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 246fd08..2c213f7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -secGear +secGear secGear ============================ @@ -89,7 +89,7 @@ make && sudo make install 使用sdk进行开发,请参考[Guide](./README.en.md) 编译&部署远程证明服务框架及组件,请参考[attestation/README](./service/attestation/README.md) -``` + 如何贡献 ---------------- -- Gitee From b4f576c6251aa6eb656d886478f86aaa919e144c Mon Sep 17 00:00:00 2001 From: MaxMadMax Date: Mon, 25 Aug 2025 02:48:29 +0000 Subject: [PATCH 2/2] add top CMakeLists.txt Signed-off-by: MaxMadMax --- CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..bec0c6b --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,14 @@ +# Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. +# secGear is licensed under the Mulan PSL v2. +# You can use this software according to the terms and conditions of the Mulan PSL v2. +# You may obtain a copy of Mulan PSL v2 at: +# http://license.coscl.org.cn/MulanPSL2 +# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR +# PURPOSE. +# See the Mulan PSL v2 for more details. + +cmake_minimum_required(VERSION 3.10 FATAL_ERROR) +project(secGear C) + +add_subdirectory(sdk) \ No newline at end of file -- Gitee