mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
9 lines
No EOL
283 B
CMake
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) |