1# Install script for directory: /rdbg-bench/src/rocksdb-6.9/db_stress_tool
2
3# Set the install prefix
4if(NOT DEFINED CMAKE_INSTALL_PREFIX)
5  set(CMAKE_INSTALL_PREFIX "/usr/local")
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 "Release")
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
35# Set path to fallback-tool for dependency-resolution.
36if(NOT DEFINED CMAKE_OBJDUMP)
37  set(CMAKE_OBJDUMP "/usr/bin/llvm-objdump")
38endif()
39
40