13 lines
342 B
CMake
13 lines
342 B
CMake
CMAKE_MINIMUM_REQUIRED(VERSION 2.8...3.20)
|
|
PROJECT(TDengine)
|
|
|
|
IF (TD_LINUX)
|
|
add_executable(tdengineTest tdengineTest.c)
|
|
target_link_libraries(tdengineTest taos_static tutil common pthread)
|
|
ENDIF()
|
|
|
|
IF (TD_DARWIN)
|
|
add_executable(tdengineTest tdengineTest.c)
|
|
target_link_libraries(tdengineTest taos_static tutil common pthread)
|
|
ENDIF()
|