TDengine/source/dnode/vnode/impl/test/CMakeLists.txt
2021-11-01 19:55:39 +08:00

9 lines
No EOL
283 B
CMake

# vnodeMemAllocatorTest
add_executable(VMATest "")
target_sources(VMATest
PRIVATE
"../src/vnodeMemAllocator.c"
"vnodeMemAllocatorTest.cpp"
)
target_include_directories(VMATest PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/../inc")
target_link_libraries(VMATest os gtest_main vnode)