1 | # Install script for directory: C:/Users/ldecherf/Desktop/Vislab/eigen
|
---|
2 |
|
---|
3 | # Set the install prefix
|
---|
4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
---|
5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Eigen")
|
---|
6 | endif()
|
---|
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()
|
---|
15 | set(CMAKE_INSTALL_CONFIG_NAME "Release")
|
---|
16 | endif()
|
---|
17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
---|
18 | endif()
|
---|
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()
|
---|
26 | set(CMAKE_INSTALL_COMPONENT)
|
---|
27 | endif()
|
---|
28 | endif()
|
---|
29 |
|
---|
30 | if("${CMAKE_INSTALL_COMPONENT}" STREQUAL "Devel" OR NOT CMAKE_INSTALL_COMPONENT)
|
---|
31 | file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/eigen3" TYPE FILE FILES "C:/Users/ldecherf/Desktop/Vislab/eigen/signature_of_eigen3_matrix_library")
|
---|
32 | endif()
|
---|
33 |
|
---|
34 | if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
---|
35 | # Include the install script for each subdirectory.
|
---|
36 | include("C:/Users/ldecherf/Desktop/Vislab/eigen/Eigen-install/Eigen/cmake_install.cmake")
|
---|
37 | include("C:/Users/ldecherf/Desktop/Vislab/eigen/Eigen-install/unsupported/cmake_install.cmake")
|
---|
38 |
|
---|
39 | endif()
|
---|
40 |
|
---|
41 | if(CMAKE_INSTALL_COMPONENT)
|
---|
42 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
|
---|
43 | else()
|
---|
44 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
|
---|
45 | endif()
|
---|
46 |
|
---|
47 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
---|
48 | "${CMAKE_INSTALL_MANIFEST_FILES}")
|
---|
49 | file(WRITE "C:/Users/ldecherf/Desktop/Vislab/eigen/Eigen-install/${CMAKE_INSTALL_MANIFEST}"
|
---|
50 | "${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
---|