From d39a301dd6074630df7b9fc379ec9639b3c623bd Mon Sep 17 00:00:00 2001 From: Shuduo Sang Date: Mon, 22 May 2023 15:29:28 +0800 Subject: [PATCH] chore: taos tools mac (#658) * fix: taos-tools build on mac * chore: add ../.github/workflows/3.0-macos-release.yml * fix: 3.0-macos-release.yml * chore: taos tools install script for mac * chore: add packaging/tools for action * fix: include typo * fix: update version --- VERSION | 6 +++--- src/CMakeLists.txt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 64ca3db9..94933678 100644 --- a/VERSION +++ b/VERSION @@ -1,3 +1,3 @@ -taosbenchmark-3.2.0 -taosdump-2.5.0 -2.5.0 +taosbenchmark-3.2.1 +taosdump-2.5.1 +2.5.1 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f78a52e8..07174fb7 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -317,7 +317,7 @@ IF (${CMAKE_SYSTEM_NAME} MATCHES "Linux" OR ${CMAKE_SYSTEM_NAME} MATCHES "Darwin INCLUDE_DIRECTORIES(/opt/homebrew/opt/argp-standalone/include/) ELSE () SET_PROPERTY(TARGET argp PROPERTY IMPORTED_LOCATION "/usr/local/lib/libargp.a") - INCLUDE_DIRECTORIES(/usr/local/include/include/) + INCLUDE_DIRECTORIES(/usr/local/include/) ENDIF () TARGET_LINK_LIBRARIES(taosBenchmark taos pthread toolscJson argp ${WEBSOCKET_LINK_FLAGS}) ElSE ()