CMakeVS6FindMake.cmake 1.0 KB

12345678910111213141516171819202122232425
  1. #=============================================================================
  2. # Copyright 2002-2009 Kitware, Inc.
  3. #
  4. # Distributed under the OSI-approved BSD License (the "License");
  5. # see accompanying file Copyright.txt for details.
  6. #
  7. # This software is distributed WITHOUT ANY WARRANTY; without even the
  8. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. # See the License for more information.
  10. #=============================================================================
  11. # (To distribute this file outside of CMake, substitute the full
  12. # License text for the above reference.)
  13. find_program(CMAKE_MAKE_PROGRAM
  14. NAMES msdev
  15. PATHS
  16. [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\6.0\\Setup;VsCommonDir]/MSDev98/Bin
  17. "c:/Program Files/Microsoft Visual Studio/Common/MSDev98/Bin"
  18. "c:/Program Files/Microsoft Visual Studio/Common/MSDev98/Bin"
  19. "/Program Files/Microsoft Visual Studio/Common/MSDev98/Bin"
  20. )
  21. mark_as_advanced(CMAKE_MAKE_PROGRAM)
  22. set(MSVC60 1)
  23. set(MSVC_VERSION 1200)