home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / mysql / scripts / cmake_install.cmake next >
Encoding:
Text File  |  2008-04-17  |  1.0 KB  |  30 lines

  1. # Install script for directory: F:/build/mysql-5.0.51b-winbuild/mysql-community-nt-5.0.51b-build/scripts
  2.  
  3. # Set the install prefix
  4. IF(NOT DEFINED CMAKE_INSTALL_PREFIX)
  5.   SET(CMAKE_INSTALL_PREFIX "C:/Program Files/MySql")
  6. ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX)
  7. STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
  8.  
  9. # Set the install configuration name.
  10. IF(NOT CMAKE_INSTALL_CONFIG_NAME)
  11.   IF(BUILD_TYPE)
  12.     STRING(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
  13.            CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
  14.   ELSE(BUILD_TYPE)
  15.     SET(CMAKE_INSTALL_CONFIG_NAME "Release")
  16.   ENDIF(BUILD_TYPE)
  17.   MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
  18. ENDIF(NOT CMAKE_INSTALL_CONFIG_NAME)
  19.  
  20. # Set the component getting installed.
  21. IF(NOT CMAKE_INSTALL_COMPONENT)
  22.   IF(COMPONENT)
  23.     MESSAGE(STATUS "Install component: \"${COMPONENT}\"")
  24.     SET(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
  25.   ELSE(COMPONENT)
  26.     SET(CMAKE_INSTALL_COMPONENT)
  27.   ENDIF(COMPONENT)
  28. ENDIF(NOT CMAKE_INSTALL_COMPONENT)
  29.  
  30.