TDengine/source/dnode/vnode/impl/test/CMakeLists.txt

9 lines
283 B
Text
Raw Normal View History

2021-10-09 09:13:40 +00:00
# vnodeMemAllocatorTest
add_executable(VMATest "")
target_sources(VMATest
PRIVATE
"../src/vnodeMemAllocator.c"
"vnodeMemAllocatorTest.cpp"
)
target_include_directories(VMATest PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/../inc")
2021-11-01 11:49:44 +00:00
target_link_libraries(VMATest os gtest_main vnode)