1#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10#   http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
19
20include(CMakePackageConfigHelpers)
21set(PACKAGE_INCLUDE_INSTALL_DIR "${includedir}/thrift")
22set(PACKAGE_CMAKE_INSTALL_DIR "${cmakedir}/thrift")
23set(PACKAGE_BIN_INSTALL_DIR "${exec_prefix}")
24
25# In CYGWIN enviroment below commands does not work properly
26if (NOT CYGWIN)
27		configure_package_config_file("${CMAKE_CURRENT_SOURCE_DIR}/build/cmake/ThriftConfig.cmake.in"
28						"${CMAKE_CURRENT_BINARY_DIR}/ThriftConfig.cmake"
29						INSTALL_DESTINATION "${CMAKE_INSTALL_DIR}/thrift"
30						PATH_VARS
31						PACKAGE_INCLUDE_INSTALL_DIR
32						PACKAGE_CMAKE_INSTALL_DIR
33						PACKAGE_BIN_INSTALL_DIR
34						)
35
36		write_basic_package_version_file("${CMAKE_CURRENT_BINARY_DIR}/ThriftConfigVersion.cmake"
37						VERSION ${thrift_VERSION_MAJOR}.${thrift_VERSION_MINOR}.${thrift_VERSION_PATCH}
38						COMPATIBILITY SameMajorVersion
39						)
40
41		install(FILES "${CMAKE_CURRENT_BINARY_DIR}/ThriftConfig.cmake"
42						"${CMAKE_CURRENT_BINARY_DIR}/ThriftConfigVersion.cmake"
43						DESTINATION "${CMAKE_INSTALL_DIR}/thrift")
44endif()
45