2016-03-17 20:23:57 +00:00
|
|
|
# Copyright (c) 2015-2016 The Khronos Group Inc.
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
# copy of this software and/or associated documentation files (the
|
|
|
|
# "Materials"), to deal in the Materials without restriction, including
|
|
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
# distribute, sublicense, and/or sell copies of the Materials, and to
|
|
|
|
# permit persons to whom the Materials are furnished to do so, subject to
|
|
|
|
# the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included
|
|
|
|
# in all copies or substantial portions of the Materials.
|
|
|
|
#
|
|
|
|
# MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS
|
|
|
|
# KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS
|
|
|
|
# SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT
|
|
|
|
# https://www.khronos.org/registry/
|
|
|
|
#
|
|
|
|
# THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
# MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
|
|
|
|
|
|
|
|
#
|
|
|
|
# The SPIR-V headers from the SPIR-V Registry
|
|
|
|
# https://www.khronos.org/registry/spir-v/
|
|
|
|
#
|
2019-05-16 11:45:30 +00:00
|
|
|
cmake_minimum_required(VERSION 3.0)
|
2021-10-11 13:45:36 +00:00
|
|
|
project(SPIRV-Headers VERSION 1.5.5)
|
2016-03-17 20:23:57 +00:00
|
|
|
|
|
|
|
# There are two ways to use this project.
|
|
|
|
#
|
|
|
|
# Using this source tree directly from a CMake-based project:
|
|
|
|
# 1. Add an add_subdirectory directive to include this sub directory.
|
|
|
|
# 2. Use ${SPIRV-Headers_SOURCE_DIR}/include} in a target_include_directories
|
|
|
|
# command.
|
|
|
|
#
|
|
|
|
# Installing the headers first, then using them with an implicit include
|
|
|
|
# directory. To install the headers:
|
|
|
|
# 1. mkdir build ; cd build
|
|
|
|
# 2. cmake ..
|
2017-09-28 03:05:35 +00:00
|
|
|
# 3. cmake --build . --target install
|
2016-03-17 20:23:57 +00:00
|
|
|
|
2017-09-28 03:05:35 +00:00
|
|
|
# legacy
|
2016-03-17 20:23:57 +00:00
|
|
|
add_custom_target(install-headers
|
2017-09-28 03:05:35 +00:00
|
|
|
COMMAND cmake -E copy_directory ${CMAKE_CURRENT_SOURCE_DIR}/include/spirv
|
2018-06-02 00:54:54 +00:00
|
|
|
$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/include/spirv)
|
2016-03-17 20:23:57 +00:00
|
|
|
|
2018-11-16 18:03:23 +00:00
|
|
|
option(SPIRV_HEADERS_SKIP_EXAMPLES "Skip building examples"
|
|
|
|
${SPIRV_HEADERS_SKIP_EXAMPLES})
|
2019-09-24 14:44:13 +00:00
|
|
|
|
|
|
|
option(SPIRV_HEADERS_SKIP_INSTALL "Skip install"
|
|
|
|
${SPIRV_HEADERS_SKIP_INSTALL})
|
|
|
|
|
2018-11-16 18:03:23 +00:00
|
|
|
if(NOT ${SPIRV_HEADERS_SKIP_EXAMPLES})
|
|
|
|
set(SPIRV_HEADERS_ENABLE_EXAMPLES ON)
|
|
|
|
endif()
|
2019-09-24 14:44:13 +00:00
|
|
|
|
|
|
|
if(NOT ${SPIRV_HEADERS_SKIP_INSTALL})
|
|
|
|
set(SPIRV_HEADERS_ENABLE_INSTALL ON)
|
|
|
|
endif()
|
|
|
|
|
2018-11-16 18:03:23 +00:00
|
|
|
if (SPIRV_HEADERS_ENABLE_EXAMPLES)
|
|
|
|
message(STATUS "Building SPIRV-Header examples")
|
|
|
|
add_subdirectory(example)
|
|
|
|
endif()
|
2019-05-11 19:49:18 +00:00
|
|
|
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
add_library(${PROJECT_NAME} INTERFACE)
|
|
|
|
target_include_directories(${PROJECT_NAME} INTERFACE
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
|
|
)
|
|
|
|
|
|
|
|
# Installation
|
|
|
|
|
2019-09-24 14:44:13 +00:00
|
|
|
if (SPIRV_HEADERS_ENABLE_INSTALL)
|
|
|
|
message(STATUS "Installing SPIRV-Header")
|
|
|
|
|
2020-11-06 06:08:24 +00:00
|
|
|
set(config_install_dir "${CMAKE_INSTALL_DATADIR}/cmake/${PROJECT_NAME}")
|
2019-09-24 14:44:13 +00:00
|
|
|
|
|
|
|
set(generated_dir "${CMAKE_CURRENT_BINARY_DIR}/generated")
|
|
|
|
|
|
|
|
set(version_config "${generated_dir}/${PROJECT_NAME}ConfigVersion.cmake")
|
|
|
|
set(project_config "${generated_dir}/${PROJECT_NAME}Config.cmake")
|
|
|
|
set(TARGETS_EXPORT_NAME "${PROJECT_NAME}Targets")
|
|
|
|
set(namespace "${PROJECT_NAME}::")
|
|
|
|
|
|
|
|
include(CMakePackageConfigHelpers)
|
2022-04-07 11:27:01 +00:00
|
|
|
|
|
|
|
if (NOT CMAKE_VERSION VERSION_LESS 3.14)
|
|
|
|
set(arch_independent_str ARCH_INDEPENDENT)
|
|
|
|
endif()
|
2019-09-24 14:44:13 +00:00
|
|
|
write_basic_package_version_file(
|
|
|
|
"${version_config}"
|
|
|
|
COMPATIBILITY SameMajorVersion
|
2022-04-07 11:27:01 +00:00
|
|
|
${arch_independent_str}
|
2019-09-24 14:44:13 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
configure_package_config_file(
|
|
|
|
"cmake/Config.cmake.in"
|
|
|
|
"${project_config}"
|
|
|
|
INSTALL_DESTINATION "${config_install_dir}"
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
TARGETS ${PROJECT_NAME}
|
|
|
|
EXPORT "${TARGETS_EXPORT_NAME}"
|
|
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
|
|
INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
DIRECTORY include/spirv
|
|
|
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
FILES "${project_config}" "${version_config}"
|
|
|
|
DESTINATION "${config_install_dir}"
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
EXPORT "${TARGETS_EXPORT_NAME}"
|
|
|
|
NAMESPACE "${namespace}"
|
|
|
|
DESTINATION "${config_install_dir}"
|
|
|
|
)
|
2021-05-18 12:55:35 +00:00
|
|
|
|
2021-09-09 14:54:44 +00:00
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/SPIRV-Headers.pc.in ${CMAKE_BINARY_DIR}/SPIRV-Headers.pc @ONLY)
|
2021-05-18 12:55:35 +00:00
|
|
|
install(
|
2021-05-20 08:45:33 +00:00
|
|
|
FILES "${CMAKE_BINARY_DIR}/SPIRV-Headers.pc"
|
2021-05-18 12:55:35 +00:00
|
|
|
DESTINATION ${CMAKE_INSTALL_DATADIR}/pkgconfig
|
|
|
|
)
|
2019-09-24 14:44:13 +00:00
|
|
|
endif()
|