You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.1 KiB
51 lines
2.1 KiB
# Install script for directory: /Users/sjunges/i2/storm/src/storm-pomdp-cli
|
|
|
|
# Set the install prefix
|
|
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
|
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
|
endif()
|
|
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
|
|
|
# Set the install configuration name.
|
|
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
|
if(BUILD_TYPE)
|
|
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
|
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
|
else()
|
|
set(CMAKE_INSTALL_CONFIG_NAME "Debug")
|
|
endif()
|
|
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
|
endif()
|
|
|
|
# Set the component getting installed.
|
|
if(NOT CMAKE_INSTALL_COMPONENT)
|
|
if(COMPONENT)
|
|
message(STATUS "Install component: \"${COMPONENT}\"")
|
|
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
|
else()
|
|
set(CMAKE_INSTALL_COMPONENT)
|
|
endif()
|
|
endif()
|
|
|
|
if("${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
|
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "/Users/sjunges/i2/storm/bin/storm-pomdp")
|
|
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/storm-pomdp" AND
|
|
NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/storm-pomdp")
|
|
execute_process(COMMAND /usr/bin/install_name_tool
|
|
-delete_rpath "/Users/sjunges/i2/storm/lib"
|
|
"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/storm-pomdp")
|
|
execute_process(COMMAND /usr/bin/install_name_tool
|
|
-delete_rpath "/Users/sjunges/i2/carl/build"
|
|
"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/storm-pomdp")
|
|
execute_process(COMMAND /usr/bin/install_name_tool
|
|
-add_rpath "/usr/local/lib"
|
|
"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/storm-pomdp")
|
|
execute_process(COMMAND /usr/bin/install_name_tool
|
|
-add_rpath "/Users/sjunges/i2/carl/build"
|
|
"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/storm-pomdp")
|
|
if(CMAKE_INSTALL_DO_STRIP)
|
|
execute_process(COMMAND "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/storm-pomdp")
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|