[Cmake-commits] [cmake-commits] david.cole committed CMakeLists.txt 1.402 1.403

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Aug 1 12:10:49 EDT 2008


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv14378

Modified Files:
	CMakeLists.txt 
Log Message:
BUG: Improve fix for issue #7058 - comsuppd did not yet exist in VC6.


Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/CMakeLists.txt,v
retrieving revision 1.402
retrieving revision 1.403
diff -C 2 -d -r1.402 -r1.403
*** CMakeLists.txt	31 Jul 2008 17:46:17 -0000	1.402
--- CMakeLists.txt	1 Aug 2008 16:10:43 -0000	1.403
***************
*** 308,312 ****
  #
  IF(MSVC)
!   TARGET_LINK_LIBRARIES(CMakeLib optimized comsupp debug comsuppd)
  ENDIF(MSVC)
  
--- 308,317 ----
  #
  IF(MSVC)
!   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)
  



More information about the Cmake-commits mailing list