Skip to content
Open
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
cmake_minimum_required(VERSION 3.16)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)


project(
TDengine
VERSION 3.0
DESCRIPTION
"An open-source big data platform designed and optimized for the Internet of Things(IOT)"
)




Copy link

Copilot AI Feb 28, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This hunk adds multiple consecutive blank lines that don't change behavior and create diff noise. Consider reducing this to a single blank line (or a minimal, whitespace-clean change) to keep the file formatting consistent and the PR easier to review.

Copilot uses AI. Check for mistakes.
# ref: https://cmake.org/cmake/help/latest/command/cmake_policy.html
# `CMake keeps policy settings on a stack`
if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.24")
Expand Down Expand Up @@ -65,3 +69,4 @@ message(STATUS "TAOSADAPTER_GIT_TAG_SHALLOW:${TAOSADAPTER_GIT_TAG_SHALLOW}")

message(STATUS "TAOSWS_GIT_TAG_NAME:${TAOSWS_GIT_TAG_NAME}")


Copy link

Copilot AI Feb 28, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line contains trailing whitespace on an otherwise blank line. This will be flagged by the repo's trailing-whitespace pre-commit hook and can cause CI failures; please remove the spaces so the line is truly empty (or delete the extra blank line).

Suggested change

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Mar 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line introduces a trailing space character. While this is presumably just a no-op change to trigger CI, trailing whitespace should be avoided to keep the file clean.

Suggested change

Copilot uses AI. Check for mistakes.
Loading