diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2014-02-04 15:29:04 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2014-02-04 15:29:04 (GMT) |
commit | 551c147aa98670cc0e05c4e5d256195ee9613887 (patch) | |
tree | 9f2bba31b47135e1c1efa151be077a18182c8e6c /tools | |
parent | ea30f2156b29d7754eae6a58e8824f121f5e2d39 (diff) | |
download | hdf5-551c147aa98670cc0e05c4e5d256195ee9613887.zip hdf5-551c147aa98670cc0e05c4e5d256195ee9613887.tar.gz hdf5-551c147aa98670cc0e05c4e5d256195ee9613887.tar.bz2 |
[svn-r24684] Add IF SHARED block around Windows PDB file generation command.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/lib/CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/lib/CMakeLists.txt b/tools/lib/CMakeLists.txt index ef77be7..1e6c848 100644 --- a/tools/lib/CMakeLists.txt +++ b/tools/lib/CMakeLists.txt @@ -85,8 +85,9 @@ ENDIF (APPLE) # Add Target(s) to CMake Install for import into other projects #----------------------------------------------------------------------------- IF (HDF5_EXPORTED_TARGETS) - - INSTALL_TARGET_PDB (${HDF5_TOOLS_LIB_TARGET} ${HDF5_INSTALL_LIB_DIR} toolslibraries) + IF (BUILD_SHARED_LIBS) + INSTALL_TARGET_PDB (${HDF5_TOOLS_LIB_TARGET} ${HDF5_INSTALL_LIB_DIR} toolslibraries) + ENDIF (BUILD_SHARED_LIBS) INSTALL ( TARGETS |