Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2929_PrioritizedGrammarEnumeration/HeuristicLab.Algorithms.DataAnalysis.PGE/3.3/go-code/go-levmar/levmar-2.6/cmake_install.cmake @ 16080

Last change on this file since 16080 was 16080, checked in by hmaislin, 6 years ago

#2929 initial commit of working PGE version

File size: 1.5 KB
Line 
1# Install script for directory: C:/Users/Hansi/go/src/github.com/verdverm/go-levmar/levmar-2.6
2
3# Set the install prefix
4if(NOT DEFINED CMAKE_INSTALL_PREFIX)
5  set(CMAKE_INSTALL_PREFIX "C:/Program Files/Git/lib64")
6endif()
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()
15    set(CMAKE_INSTALL_CONFIG_NAME "RelWithDebInfo")
16  endif()
17  message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
18endif()
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()
26    set(CMAKE_INSTALL_COMPONENT)
27  endif()
28endif()
29
30# Is this installation the result of a crosscompile?
31if(NOT DEFINED CMAKE_CROSSCOMPILING)
32  set(CMAKE_CROSSCOMPILING "FALSE")
33endif()
34
35if(CMAKE_INSTALL_COMPONENT)
36  set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
37else()
38  set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
39endif()
40
41string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
42       "${CMAKE_INSTALL_MANIFEST_FILES}")
43file(WRITE "C:/Users/Hansi/go/src/github.com/verdverm/go-levmar/levmar-2.6/${CMAKE_INSTALL_MANIFEST}"
44     "${CMAKE_INSTALL_MANIFEST_CONTENT}")
Note: See TracBrowser for help on using the repository browser.