# Install script for directory: /mnt/f/c++ projects/pistache-test/pistache

# 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 "Release")
  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()

# Install shared libraries without execute permission?
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
  set(CMAKE_INSTALL_SO_NO_EXE "1")
endif()

if("${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
  file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/pistache" TYPE FILE FILES
    "/mnt/f/c++ projects/pistache-test/pistache/include/async.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/client.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/common.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/cookie.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/description.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/endpoint.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/flags.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/http.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/http_defs.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/http_header.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/http_headers.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/iterator_adapter.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/listener.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/mailbox.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/mime.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/net.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/optional.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/os.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/peer.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/prototype.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/reactor.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/router.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/stream.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/tcp.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/timer_pool.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/transport.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/typeid.h"
    "/mnt/f/c++ projects/pistache-test/pistache/include/view.h"
    )
endif()

if(NOT CMAKE_INSTALL_LOCAL_ONLY)
  # Include the install script for each subdirectory.
  include("/mnt/f/c++ projects/pistache-test/pistache/build/src/cmake_install.cmake")
  include("/mnt/f/c++ projects/pistache-test/pistache/build/examples/cmake_install.cmake")
  include("/mnt/f/c++ projects/pistache-test/pistache/build/googletest-release-1.7.0/cmake_install.cmake")
  include("/mnt/f/c++ projects/pistache-test/pistache/build/tests/cmake_install.cmake")

endif()

if(CMAKE_INSTALL_COMPONENT)
  set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
else()
  set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
endif()

string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
       "${CMAKE_INSTALL_MANIFEST_FILES}")
file(WRITE "/mnt/f/c++ projects/pistache-test/pistache/build/${CMAKE_INSTALL_MANIFEST}"
     "${CMAKE_INSTALL_MANIFEST_CONTENT}")
