summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2016-05-24 20:16:40 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2016-05-24 20:16:40 (GMT)
commit29a5f1061994a9d40a96726df6141f6e127c4b7b (patch)
tree1293a2fdd0f1e65882993a6e1f8cd12594aa457f /test
parent7924f465c234221e41466aef5485eeb21f12000a (diff)
downloadhdf5-29a5f1061994a9d40a96726df6141f6e127c4b7b.zip
hdf5-29a5f1061994a9d40a96726df6141f6e127c4b7b.tar.gz
hdf5-29a5f1061994a9d40a96726df6141f6e127c4b7b.tar.bz2
[svn-r29963] Fix plugin test executable link library
Diffstat (limited to 'test')
-rw-r--r--test/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index f84ff7e..cf54491 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -342,13 +342,13 @@ if (BUILD_SHARED_LIBS)
add_executable (plugin ${HDF5_TEST_SOURCE_DIR}/plugin.c)
TARGET_NAMING (plugin SHARED)
TARGET_C_PROPERTIES (plugin SHARED " " " ")
- target_link_libraries (plugin ${HDF5_TEST_PLUGIN_LIB_TARGET})
+ target_link_libraries (plugin ${HDF5_TEST_LIB_TARGET})
set_target_properties (plugin PROPERTIES FOLDER test)
else (BUILD_SHARED_LIBS)
add_executable (plugin ${HDF5_TEST_SOURCE_DIR}/plugin.c)
TARGET_NAMING (plugin STATIC)
TARGET_C_PROPERTIES (plugin STATIC " " " ")
- target_link_libraries (plugin ${HDF5_TEST_PLUGIN_LIB_TARGET})
+ target_link_libraries (plugin ${HDF5_TEST_LIB_TARGET})
set_target_properties (plugin PROPERTIES FOLDER test)
endif (BUILD_SHARED_LIBS)