blob: c46f66987445be0856b53ef396e9e99544aca2fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
hdf5/CMakeLists.txt | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/hdf5/CMakeLists.txt b/hdf5/CMakeLists.txt
index d91194f..032a292 100644
--- a/hdf5/CMakeLists.txt
+++ b/hdf5/CMakeLists.txt
@@ -44,16 +44,16 @@ endif(MSVC)
# install
install(FILES blosc_filter.h DESTINATION include COMPONENT HDF5_FILTER_DEV)
-install(TARGETS blosc_filter_shared DESTINATION lib COMPONENT HDF5_FILTER)
+install(TARGETS blosc_filter_shared DESTINATION lib${LIB_SUFFIX} COMPONENT HDF5_FILTER)
if(BUILD_STATIC)
install(
- TARGETS blosc_filter_static DESTINATION lib COMPONENT HDF5_FILTER_DEV)
+ TARGETS blosc_filter_static DESTINATION lib${LIB_SUFFIX} COMPONENT HDF5_FILTER_DEV)
endif(BUILD_STATIC)
# test
if(BUILD_TESTS)
add_executable(example example.c)
- target_link_libraries(example blosc_filter_static ${HDF5_LIBRARIES})
+ target_link_libraries(example blosc_filter_shared ${HDF5_LIBRARIES})
add_test(test_hdf5_filter example)
endif(BUILD_TESTS)
|