From b519492895cf76ff116fd5ff76bea06ca8bf4d37 Mon Sep 17 00:00:00 2001 From: Hongze Cheng Date: Wed, 22 Sep 2021 13:23:27 +0800 Subject: [PATCH] refact --- src/CMakeLists.txt | 3 ++- src/common/source/common.c | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 src/common/source/common.c diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0a225581d9..6fa4aeac20 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,5 +1,6 @@ add_subdirectory(os) add_subdirectory(util) -# add_subdirectory(common) +add_subdirectory(common) + add_subdirectory(dnode) diff --git a/src/common/source/common.c b/src/common/source/common.c new file mode 100644 index 0000000000..6dea4a4e57 --- /dev/null +++ b/src/common/source/common.c @@ -0,0 +1,14 @@ +/* + * Copyright (c) 2019 TAOS Data, Inc. + * + * This program is free software: you can use, redistribute, and/or modify + * it under the terms of the GNU Affero General Public License, version 3 + * or later ("AGPL"), as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ \ No newline at end of file -- GitLab