diff options
author | Konstantin Osipov <kostja@sun.com> | 2010-06-12 00:50:41 +0400 |
---|---|---|
committer | Konstantin Osipov <kostja@sun.com> | 2010-06-12 00:50:41 +0400 |
commit | 7c634812495496c2e03b8962161bd001350cbe4f (patch) | |
tree | 4f82d7472a7eefeb35a2f792a85ca0143ea80bcb /storage/heap | |
parent | b14045660153fc48065774a9bc8a955b2eba093d (diff) | |
download | mariadb-git-7c634812495496c2e03b8962161bd001350cbe4f.tar.gz |
Fix the cmake rule that builds heap tests, added
to cmake build with the patch for WL#5419.
Add missing libraries.
Diffstat (limited to 'storage/heap')
-rwxr-xr-x | storage/heap/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/heap/CMakeLists.txt b/storage/heap/CMakeLists.txt index 32510ba0c79..2c0b65b0cc4 100755 --- a/storage/heap/CMakeLists.txt +++ b/storage/heap/CMakeLists.txt @@ -25,7 +25,7 @@ SET(HEAP_SOURCES _check.c _rectest.c hp_block.c hp_clear.c hp_close.c hp_create MYSQL_ADD_PLUGIN(heap ${HEAP_SOURCES} STORAGE_ENGINE MANDATORY RECOMPILE_FOR_EMBEDDED) ADD_EXECUTABLE(hp_test1 hp_test1.c) -TARGET_LINK_LIBRARIES(hp_test1 mysys heap) +TARGET_LINK_LIBRARIES(hp_test1 mysys heap dbug strings) ADD_EXECUTABLE(hp_test2 hp_test2.c) -TARGET_LINK_LIBRARIES(hp_test2 mysys heap) +TARGET_LINK_LIBRARIES(hp_test2 mysys heap dbug strings) |