~uhh-ssd/+junk/Probe_Control

« back to all changes in this revision

Viewing changes to plplot/plplot-5.9.9/lib/qsastime/cmake_install.cmake

  • Committer: Joachim Erfle
  • Date: 2012-06-15 16:09:06 UTC
  • Revision ID: joachim.erfle@desy.de-20120615160906-popdt8a9d8ob1oyw
added stripmeasurements

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Install script for directory: /space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/lib/qsastime
 
2
 
 
3
# Set the install prefix
 
4
IF(NOT DEFINED CMAKE_INSTALL_PREFIX)
 
5
  SET(CMAKE_INSTALL_PREFIX "/usr/local")
 
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 "")
 
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_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified")
 
36
  list(APPEND CPACK_ABSOLUTE_DESTINATION_FILES
 
37
   "/usr/local/include/plplot/qsastime.h;/usr/local/include/plplot/qsastimedll.h")
 
38
FILE(INSTALL DESTINATION "/usr/local/include/plplot" TYPE FILE FILES
 
39
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/lib/qsastime/qsastime.h"
 
40
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/lib/qsastime/qsastimedll.h"
 
41
    )
 
42
ENDIF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified")
 
43
 
 
44
IF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified")
 
45
  FOREACH(file
 
46
      "$ENV{DESTDIR}/usr/local/lib/libqsastime.so.0.0.1"
 
47
      "$ENV{DESTDIR}/usr/local/lib/libqsastime.so.0"
 
48
      "$ENV{DESTDIR}/usr/local/lib/libqsastime.so"
 
49
      )
 
50
    IF(EXISTS "${file}" AND
 
51
       NOT IS_SYMLINK "${file}")
 
52
      FILE(RPATH_CHECK
 
53
           FILE "${file}"
 
54
           RPATH "")
 
55
    ENDIF()
 
56
  ENDFOREACH()
 
57
  list(APPEND CPACK_ABSOLUTE_DESTINATION_FILES
 
58
   "/usr/local/lib/libqsastime.so.0.0.1;/usr/local/lib/libqsastime.so.0;/usr/local/lib/libqsastime.so")
 
59
FILE(INSTALL DESTINATION "/usr/local/lib" TYPE SHARED_LIBRARY FILES
 
60
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/lib/qsastime/libqsastime.so.0.0.1"
 
61
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/lib/qsastime/libqsastime.so.0"
 
62
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/lib/qsastime/libqsastime.so"
 
63
    )
 
64
  FOREACH(file
 
65
      "$ENV{DESTDIR}/usr/local/lib/libqsastime.so.0.0.1"
 
66
      "$ENV{DESTDIR}/usr/local/lib/libqsastime.so.0"
 
67
      "$ENV{DESTDIR}/usr/local/lib/libqsastime.so"
 
68
      )
 
69
    IF(EXISTS "${file}" AND
 
70
       NOT IS_SYMLINK "${file}")
 
71
      IF(CMAKE_INSTALL_DO_STRIP)
 
72
        EXECUTE_PROCESS(COMMAND "/usr/bin/strip" "${file}")
 
73
      ENDIF(CMAKE_INSTALL_DO_STRIP)
 
74
    ENDIF()
 
75
  ENDFOREACH()
 
76
ENDIF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified")
 
77