mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
14 lines
241 B
CMake
14 lines
241 B
CMake
enable_testing()
|
|
|
|
aux_source_directory(. MONITOR_TEST_SRC)
|
|
add_executable(monitorTest ${MONITOR_TEST_SRC})
|
|
target_link_libraries(
|
|
monitorTest
|
|
PUBLIC monitor
|
|
PUBLIC gtest_main
|
|
)
|
|
|
|
add_test(
|
|
NAME monitorTest
|
|
COMMAND monitorTest
|
|
)
|