diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-02-02 18:09:10 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-02-02 18:09:10 (GMT) |
commit | 177c050891d979ec1197e68bf3ca7dd3148cb08b (patch) | |
tree | d4e1329e41af6f1c9d96fb10c03eefe48c619fc0 /tools/src/h5copy | |
parent | be955c5e792ff642c259c25999a86c6007682019 (diff) | |
download | hdf5-177c050891d979ec1197e68bf3ca7dd3148cb08b.zip hdf5-177c050891d979ec1197e68bf3ca7dd3148cb08b.tar.gz hdf5-177c050891d979ec1197e68bf3ca7dd3148cb08b.tar.bz2 |
HDFFV-9875 Fix target exports and add static tools pdb files
Diffstat (limited to 'tools/src/h5copy')
-rw-r--r-- | tools/src/h5copy/CMakeLists.txt | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/tools/src/h5copy/CMakeLists.txt b/tools/src/h5copy/CMakeLists.txt index fc8e4a2..d1f5f50 100644 --- a/tools/src/h5copy/CMakeLists.txt +++ b/tools/src/h5copy/CMakeLists.txt @@ -38,15 +38,17 @@ endif () #----------------------------------------------------------------------------- # Rules for Installation of tools using make Install target #----------------------------------------------------------------------------- - -if (BUILD_SHARED_LIBS) - INSTALL_PROGRAM_PDB (h5copy-shared ${HDF5_INSTALL_BIN_DIR} toolsapplications) +if (HDF5_EXPORTED_TARGETS) + if (BUILD_SHARED_LIBS) + INSTALL_PROGRAM_PDB (h5copy-shared ${HDF5_INSTALL_BIN_DIR} toolsapplications) + endif () + INSTALL_PROGRAM_PDB (h5copy ${HDF5_INSTALL_BIN_DIR} toolsapplications) + + install ( + TARGETS + ${H5_DEP_EXECUTABLES} + EXPORT + ${HDF5_EXPORTED_TARGETS} + RUNTIME DESTINATION ${HDF5_INSTALL_BIN_DIR} COMPONENT toolsapplications + ) endif () - -install ( - TARGETS - ${H5_DEP_EXECUTABLES} - EXPORT - ${HDF5_EXPORTED_TARGETS} - RUNTIME DESTINATION ${HDF5_INSTALL_BIN_DIR} COMPONENT toolsapplications -) |