Merge pull request #28271 from taosdata/feat/anode8
feat: enable analysis
This commit is contained in:
commit
8f0a4d7467
|
@ -47,10 +47,6 @@ target_link_libraries(
|
||||||
INTERFACE api
|
INTERFACE api
|
||||||
)
|
)
|
||||||
|
|
||||||
if(${BUILD_WITH_ANALYSIS})
|
|
||||||
add_definitions(-DUSE_ANAL)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(${BUILD_S3})
|
if(${BUILD_S3})
|
||||||
|
|
||||||
if(${BUILD_WITH_S3})
|
if(${BUILD_WITH_S3})
|
||||||
|
|
|
@ -14,6 +14,10 @@ IF (TD_ENTERPRISE)
|
||||||
ELSEIF(${BUILD_WITH_COS})
|
ELSEIF(${BUILD_WITH_COS})
|
||||||
add_definitions(-DUSE_COS)
|
add_definitions(-DUSE_COS)
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
||||||
|
IF(${BUILD_WITH_ANALYSIS})
|
||||||
|
add_definitions(-DUSE_ANAL)
|
||||||
|
ENDIF()
|
||||||
ENDIF ()
|
ENDIF ()
|
||||||
|
|
||||||
add_library(mnode STATIC ${MNODE_SRC})
|
add_library(mnode STATIC ${MNODE_SRC})
|
||||||
|
|
|
@ -5,6 +5,10 @@ if(${TD_DARWIN})
|
||||||
target_compile_options(executor PRIVATE -Wno-error=deprecated-non-prototype)
|
target_compile_options(executor PRIVATE -Wno-error=deprecated-non-prototype)
|
||||||
endif(${TD_DARWIN})
|
endif(${TD_DARWIN})
|
||||||
|
|
||||||
|
IF(${BUILD_WITH_ANALYSIS})
|
||||||
|
add_definitions(-DUSE_ANAL)
|
||||||
|
ENDIF()
|
||||||
|
|
||||||
target_link_libraries(executor
|
target_link_libraries(executor
|
||||||
PRIVATE os util common function parser planner qcom scalar nodes index wal tdb geometry
|
PRIVATE os util common function parser planner qcom scalar nodes index wal tdb geometry
|
||||||
)
|
)
|
||||||
|
|
|
@ -12,6 +12,10 @@ ELSE ()
|
||||||
MESSAGE(STATUS "enable assert core")
|
MESSAGE(STATUS "enable assert core")
|
||||||
ENDIF (${ASSERT_NOT_CORE})
|
ENDIF (${ASSERT_NOT_CORE})
|
||||||
|
|
||||||
|
if(${BUILD_WITH_ANALYSIS})
|
||||||
|
add_definitions(-DUSE_ANAL)
|
||||||
|
endif()
|
||||||
|
|
||||||
target_include_directories(
|
target_include_directories(
|
||||||
util
|
util
|
||||||
PUBLIC "${TD_SOURCE_DIR}/include/util"
|
PUBLIC "${TD_SOURCE_DIR}/include/util"
|
||||||
|
|
Loading…
Reference in New Issue