~ubuntu-branches/ubuntu/saucy/kubuntu-debug-installer/saucy

« back to all changes in this revision

Viewing changes to build/cmake_install.cmake

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2010-08-13 13:34:37 UTC
  • Revision ID: james.westby@ubuntu.com-20100813133437-zunuz8s4c2hzwiu2
Tags: 10.10ubuntu4
Rebuild for libqapt0 -> libqapt1 transition

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Install script for directory: /home/jonathan/src/kubuntu-debug-installer/trunk
2
 
 
3
 
# Set the install prefix
4
 
IF(NOT DEFINED CMAKE_INSTALL_PREFIX)
5
 
  SET(CMAKE_INSTALL_PREFIX "/usr")
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 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)
15
 
    SET(CMAKE_INSTALL_CONFIG_NAME "RelWithDebInfo")
16
 
  ENDIF(BUILD_TYPE)
17
 
  MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
18
 
ENDIF(NOT DEFINED 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
 
# Install shared libraries without execute permission?
31
 
IF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
32
 
  SET(CMAKE_INSTALL_SO_NO_EXE "1")
33
 
ENDIF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
34
 
 
35
 
IF(NOT CMAKE_INSTALL_LOCAL_ONLY)
36
 
  # Include the install script for each subdirectory.
37
 
  INCLUDE("/home/jonathan/src/kubuntu-debug-installer/trunk/build/src/cmake_install.cmake")
38
 
 
39
 
ENDIF(NOT CMAKE_INSTALL_LOCAL_ONLY)
40
 
 
41
 
IF(CMAKE_INSTALL_COMPONENT)
42
 
  SET(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
43
 
ELSE(CMAKE_INSTALL_COMPONENT)
44
 
  SET(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
45
 
ENDIF(CMAKE_INSTALL_COMPONENT)
46
 
 
47
 
FILE(WRITE "/home/jonathan/src/kubuntu-debug-installer/trunk/build/${CMAKE_INSTALL_MANIFEST}" "")
48
 
FOREACH(file ${CMAKE_INSTALL_MANIFEST_FILES})
49
 
  FILE(APPEND "/home/jonathan/src/kubuntu-debug-installer/trunk/build/${CMAKE_INSTALL_MANIFEST}" "${file}\n")
50
 
ENDFOREACH(file)