diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2016-05-24 20:18:23 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2016-05-24 20:18:23 (GMT) |
commit | e755905fae82d7cf4f930c3c88e507e3fcc1b2b4 (patch) | |
tree | 38fd1a3a4660881d86590937850dec542fa6ca9c /test | |
parent | 8138d7b7d4f0a56c7d014ec19d889ef1b27c9139 (diff) | |
download | hdf5-e755905fae82d7cf4f930c3c88e507e3fcc1b2b4.zip hdf5-e755905fae82d7cf4f930c3c88e507e3fcc1b2b4.tar.gz hdf5-e755905fae82d7cf4f930c3c88e507e3fcc1b2b4.tar.bz2 |
[svn-r29964] Fix plugin test executable link library
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 43037fc..21db2e9 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -405,13 +405,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) |