blob: 15c094296ff32b3d89b163e91d5705596fdafb3e [file] [log] [blame]
soroshsabz0c4e96f2019-03-15 15:05:18 +03301#
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)
soroshsabz0c4e96f2019-03-15 15:05:18 +033021
Sutou Kouhei951bb182022-11-08 17:38:49 +090022# In CYGWIN environment below commands does not work properly
soroshsabz0c4e96f2019-03-15 15:05:18 +033023if (NOT CYGWIN)
24 configure_package_config_file("${CMAKE_CURRENT_SOURCE_DIR}/build/cmake/ThriftConfig.cmake.in"
25 "${CMAKE_CURRENT_BINARY_DIR}/ThriftConfig.cmake"
26 INSTALL_DESTINATION "${CMAKE_INSTALL_DIR}/thrift"
27 PATH_VARS
Sutou Kouhei951bb182022-11-08 17:38:49 +090028 INCLUDE_INSTALL_DIR
29 CMAKE_INSTALL_DIR
30 BIN_INSTALL_DIR
soroshsabz0c4e96f2019-03-15 15:05:18 +033031 )
32
33 write_basic_package_version_file("${CMAKE_CURRENT_BINARY_DIR}/ThriftConfigVersion.cmake"
34 VERSION ${thrift_VERSION_MAJOR}.${thrift_VERSION_MINOR}.${thrift_VERSION_PATCH}
35 COMPATIBILITY SameMajorVersion
36 )
37
38 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/ThriftConfig.cmake"
39 "${CMAKE_CURRENT_BINARY_DIR}/ThriftConfigVersion.cmake"
soroshsabz0c4e96f2019-03-15 15:05:18 +033040 DESTINATION "${CMAKE_INSTALL_DIR}/thrift")
Mario Emmenlauera4e7b9a2023-10-09 14:53:10 +020041 if(WITH_LIBEVENT)
42 install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/build/cmake/FindLibevent.cmake"
43 DESTINATION "${CMAKE_INSTALL_DIR}/thrift")
44 endif()
soroshsabz0c4e96f2019-03-15 15:05:18 +033045endif()