mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
BUG: Improve fix for issue #7058 - comsuppd did not yet exist in VC6.
This commit is contained in:
@@ -307,7 +307,12 @@ ENDIF(CMAKE_BUILD_ON_VISUAL_STUDIO OR MINGW)
|
||||
# _MSC_VER and HAVE_COMDEF_H are defined...
|
||||
#
|
||||
IF(MSVC)
|
||||
TARGET_LINK_LIBRARIES(CMakeLib optimized comsupp debug comsuppd)
|
||||
IF(MSVC60)
|
||||
# comsuppd did not yet exist in VS6
|
||||
TARGET_LINK_LIBRARIES(CMakeLib comsupp)
|
||||
ELSE(MSVC60)
|
||||
TARGET_LINK_LIBRARIES(CMakeLib optimized comsupp debug comsuppd)
|
||||
ENDIF(MSVC60)
|
||||
ENDIF(MSVC)
|
||||
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user