blob: e1d75229ef10893910efa903cba370f6965a8504 [file] [log] [blame]
Dmitriy Kozmenkof2296692013-05-22 09:40:50 -04001# Install script for directory: /var/www/pclBox
2
3# Set the install prefix
4IF(NOT DEFINED CMAKE_INSTALL_PREFIX)
5 SET(CMAKE_INSTALL_PREFIX "/usr/local")
6ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX)
7STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
8
9# Set the install configuration name.
10IF(NOT DEFINED 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)
Dmitriy Kozmenko55aaa212013-06-21 15:15:44 -040015 SET(CMAKE_INSTALL_CONFIG_NAME "")
Dmitriy Kozmenkof2296692013-05-22 09:40:50 -040016 ENDIF(BUILD_TYPE)
17 MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
18ENDIF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
19
20# Set the component getting installed.
21IF(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)
28ENDIF(NOT CMAKE_INSTALL_COMPONENT)
29
30# Install shared libraries without execute permission?
31IF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
32 SET(CMAKE_INSTALL_SO_NO_EXE "1")
33ENDIF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
34
35IF(CMAKE_INSTALL_COMPONENT)
36 SET(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
37ELSE(CMAKE_INSTALL_COMPONENT)
38 SET(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
39ENDIF(CMAKE_INSTALL_COMPONENT)
40
41FILE(WRITE "/var/www/pclBox/${CMAKE_INSTALL_MANIFEST}" "")
42FOREACH(file ${CMAKE_INSTALL_MANIFEST_FILES})
43 FILE(APPEND "/var/www/pclBox/${CMAKE_INSTALL_MANIFEST}" "${file}\n")
44ENDFOREACH(file)