soroshsabz | 0c4e96f | 2019-03-15 15:05:18 +0330 | [diff] [blame] | 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 | |
| 20 | include(CMakePackageConfigHelpers) |
| 21 | set(PACKAGE_INCLUDE_INSTALL_DIR "${includedir}/thrift") |
| 22 | set(PACKAGE_CMAKE_INSTALL_DIR "${cmakedir}/thrift") |
| 23 | set(PACKAGE_BIN_INSTALL_DIR "${exec_prefix}") |
| 24 | |
| 25 | # In CYGWIN enviroment below commands does not work properly |
| 26 | if (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" |
Sutou Kouhei | fe1f69a | 2023-04-27 09:48:04 +0900 | [diff] [blame] | 43 | "${CMAKE_CURRENT_SOURCE_DIR}/build/cmake/FindLibevent.cmake" |
soroshsabz | 0c4e96f | 2019-03-15 15:05:18 +0330 | [diff] [blame] | 44 | DESTINATION "${CMAKE_INSTALL_DIR}/thrift") |
| 45 | endif() |