You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
3.6 KiB
CMake

# Install script for directory: F:/WebCC/webcc/webcc
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "F:/vcpkg/installed/x64-windows")
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()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "FALSE")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
if("${CMAKE_INSTALL_CONFIG_NAME}" MATCHES "^([Dd][Ee][Bb][Uu][Gg])$")
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "F:/WebCC/webcc/build/bin/debug/webccd.lib")
elseif("${CMAKE_INSTALL_CONFIG_NAME}" MATCHES "^([Rr][Ee][Ll][Ee][Aa][Ss][Ee])$")
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "F:/WebCC/webcc/build/bin/release/webcc.lib")
elseif("${CMAKE_INSTALL_CONFIG_NAME}" MATCHES "^([Mm][Ii][Nn][Ss][Ii][Zz][Ee][Rr][Ee][Ll])$")
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "F:/WebCC/webcc/build/bin/MinSizeRel/webcc.lib")
elseif("${CMAKE_INSTALL_CONFIG_NAME}" MATCHES "^([Rr][Ee][Ll][Ww][Ii][Tt][Hh][Dd][Ee][Bb][Ii][Nn][Ff][Oo])$")
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "F:/WebCC/webcc/build/bin/RelWithDebInfo/webcc.lib")
endif()
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/webcc" TYPE FILE FILES
"F:/WebCC/webcc/webcc/base64.h"
"F:/WebCC/webcc/webcc/body.h"
"F:/WebCC/webcc/webcc/client_base.h"
"F:/WebCC/webcc/webcc/client.h"
"F:/WebCC/webcc/webcc/client_pool.h"
"F:/WebCC/webcc/webcc/client_session.h"
"F:/WebCC/webcc/webcc/common.h"
"F:/WebCC/webcc/webcc/connection.h"
"F:/WebCC/webcc/webcc/connection_pool.h"
"F:/WebCC/webcc/webcc/fs.h"
"F:/WebCC/webcc/webcc/globals.h"
"F:/WebCC/webcc/webcc/logger.h"
"F:/WebCC/webcc/webcc/message.h"
"F:/WebCC/webcc/webcc/parser.h"
"F:/WebCC/webcc/webcc/queue.h"
"F:/WebCC/webcc/webcc/request.h"
"F:/WebCC/webcc/webcc/request_builder.h"
"F:/WebCC/webcc/webcc/request_parser.h"
"F:/WebCC/webcc/webcc/response.h"
"F:/WebCC/webcc/webcc/response_builder.h"
"F:/WebCC/webcc/webcc/response_parser.h"
"F:/WebCC/webcc/webcc/router.h"
"F:/WebCC/webcc/webcc/server.h"
"F:/WebCC/webcc/webcc/socket_base.h"
"F:/WebCC/webcc/webcc/socket.h"
"F:/WebCC/webcc/webcc/string.h"
"F:/WebCC/webcc/webcc/url.h"
"F:/WebCC/webcc/webcc/utility.h"
"F:/WebCC/webcc/webcc/version.h"
"F:/WebCC/webcc/webcc/view.h"
"F:/WebCC/webcc/webcc/ssl_socket.h"
"F:/WebCC/webcc/webcc/ssl_client.h"
)
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/webcc" TYPE FILE FILES "F:/WebCC/webcc/build/webcc/config.h")
endif()