~uhh-ssd/+junk/humidity_readout

« back to all changes in this revision

Viewing changes to plplot/plplot-5.9.9/data/cmake_install.cmake

  • Committer: Joachim Erfle
  • Date: 2013-07-24 13:53:41 UTC
  • Revision ID: joachim.erfle@desy.de-20130724135341-1qojpp701zsn009p
initial commit

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/data
 
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/share/plplot5.9.9/cglobe.map;/usr/local/share/plplot5.9.9/globe.map;/usr/local/share/plplot5.9.9/plstnd5.fnt;/usr/local/share/plplot5.9.9/plxtnd5.fnt;/usr/local/share/plplot5.9.9/usa.map;/usr/local/share/plplot5.9.9/usaglobe.map;/usr/local/share/plplot5.9.9/cmap0_default.pal;/usr/local/share/plplot5.9.9/cmap0_alternate.pal;/usr/local/share/plplot5.9.9/cmap0_white_bg.pal;/usr/local/share/plplot5.9.9/cmap0_black_on_white.pal;/usr/local/share/plplot5.9.9/cmap1_default.pal;/usr/local/share/plplot5.9.9/cmap1_blue_yellow.pal;/usr/local/share/plplot5.9.9/cmap1_blue_red.pal;/usr/local/share/plplot5.9.9/cmap1_gray.pal;/usr/local/share/plplot5.9.9/cmap1_radar.pal;/usr/local/share/plplot5.9.9/cmap1_highfreq.pal;/usr/local/share/plplot5.9.9/cmap1_lowfreq.pal")
 
38
FILE(INSTALL DESTINATION "/usr/local/share/plplot5.9.9" TYPE FILE FILES
 
39
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/cglobe.map"
 
40
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/globe.map"
 
41
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/plstnd5.fnt"
 
42
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/plxtnd5.fnt"
 
43
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/usa.map"
 
44
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/usaglobe.map"
 
45
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/cmap0_default.pal"
 
46
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/cmap0_alternate.pal"
 
47
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/cmap0_white_bg.pal"
 
48
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/cmap0_black_on_white.pal"
 
49
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/cmap1_default.pal"
 
50
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/cmap1_blue_yellow.pal"
 
51
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/cmap1_blue_red.pal"
 
52
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/cmap1_gray.pal"
 
53
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/cmap1_radar.pal"
 
54
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/cmap1_highfreq.pal"
 
55
    "/space/erfle/sync/work/Probe_Control/plplot/plplot-5.9.9/data/cmap1_lowfreq.pal"
 
56
    )
 
57
ENDIF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified")
 
58