2020-02-05 17:16:05 +00:00
|
|
|
# Copyright 2020 The Dawn Authors
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2021-09-23 19:24:43 +00:00
|
|
|
if (DAWN_REQUIRES_SPIRV_CROSS AND NOT TARGET spirv-cross)
|
2020-09-09 16:39:00 +00:00
|
|
|
set(SPIRV_CROSS_EXCEPTIONS_TO_ASSERTIONS ON CACHE BOOL "" FORCE)
|
|
|
|
set(SPIRV_CROSS_ENABLE_TESTS OFF CACHE BOOL "" FORCE)
|
|
|
|
set(SPIRV_CROSS_SKIP_INSTALL ON CACHE BOOL "" FORCE)
|
|
|
|
|
|
|
|
message(STATUS "Dawn: using spirv-cross at ${DAWN_SPIRV_CROSS_DIR}")
|
2021-09-24 10:38:18 +00:00
|
|
|
add_subdirectory(${DAWN_SPIRV_CROSS_DIR} "${CMAKE_BINARY_DIR}/third_party/spirv-cross")
|
2020-09-09 16:39:00 +00:00
|
|
|
endif()
|
|
|
|
|
2020-02-05 17:16:05 +00:00
|
|
|
if (NOT TARGET SPIRV-Headers)
|
2020-04-10 17:04:31 +00:00
|
|
|
set(SPIRV_HEADERS_SKIP_EXAMPLES ON CACHE BOOL "" FORCE)
|
|
|
|
set(SPIRV_HEADERS_SKIP_INSTALL ON CACHE BOOL "" FORCE)
|
2020-02-05 17:16:05 +00:00
|
|
|
|
|
|
|
message(STATUS "Dawn: using SPIRV-Headers at ${DAWN_SPIRV_HEADERS_DIR}")
|
2021-09-24 10:38:18 +00:00
|
|
|
add_subdirectory(${DAWN_SPIRV_HEADERS_DIR} "${CMAKE_BINARY_DIR}/third_party/spirv-headers")
|
2020-02-05 17:16:05 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT TARGET SPIRV-Tools)
|
2020-04-10 17:04:31 +00:00
|
|
|
set(SPIRV_SKIP_TESTS ON CACHE BOOL "" FORCE)
|
|
|
|
set(SPIRV_SKIP_EXECUTABLES ON CACHE BOOL "" FORCE)
|
|
|
|
set(SKIP_SPIRV_TOOLS_INSTALL ON CACHE BOOL "" FORCE)
|
2020-02-05 17:16:05 +00:00
|
|
|
|
|
|
|
message(STATUS "Dawn: using SPIRV-Tools at ${DAWN_SPIRV_TOOLS_DIR}")
|
2021-09-24 10:38:18 +00:00
|
|
|
add_subdirectory(${DAWN_SPIRV_TOOLS_DIR} "${CMAKE_BINARY_DIR}/third_party/spirv-tools")
|
2020-02-05 17:16:05 +00:00
|
|
|
endif()
|
|
|
|
|
2021-09-23 20:13:53 +00:00
|
|
|
if (NOT TARGET glfw)
|
|
|
|
set(GLFW_BUILD_DOCS OFF CACHE BOOL "" FORCE)
|
|
|
|
set(GLFW_BUILD_TESTS OFF CACHE BOOL "" FORCE)
|
|
|
|
set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
|
2020-02-05 17:16:05 +00:00
|
|
|
|
2021-09-23 20:13:53 +00:00
|
|
|
message(STATUS "Dawn: using GLFW at ${DAWN_GLFW_DIR}")
|
2021-09-24 10:38:18 +00:00
|
|
|
add_subdirectory(${DAWN_GLFW_DIR} "${CMAKE_BINARY_DIR}/third_party/glfw")
|
2021-09-23 20:13:53 +00:00
|
|
|
endif()
|
2020-02-05 17:16:05 +00:00
|
|
|
|
2021-09-23 20:13:53 +00:00
|
|
|
if (DAWN_BUILD_EXAMPLES)
|
2020-02-05 17:16:05 +00:00
|
|
|
if (NOT TARGET glm)
|
|
|
|
message(STATUS "Dawn: using GLM at ${DAWN_GLM_DIR}")
|
2021-09-24 10:38:18 +00:00
|
|
|
add_subdirectory(${DAWN_GLM_DIR} "${CMAKE_BINARY_DIR}/third_party/glm")
|
2020-02-05 17:16:05 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
2020-02-15 00:39:13 +00:00
|
|
|
|
2021-03-22 21:23:36 +00:00
|
|
|
if (NOT TARGET libtint)
|
|
|
|
message(STATUS "Dawn: using Tint at ${DAWN_TINT_DIR}")
|
2021-09-24 10:38:18 +00:00
|
|
|
add_subdirectory(${DAWN_TINT_DIR} "${CMAKE_BINARY_DIR}/third_party/tint")
|
2020-10-23 13:10:20 +00:00
|
|
|
endif()
|
|
|
|
|
2021-09-23 20:36:03 +00:00
|
|
|
if (NOT TARGET libabsl)
|
|
|
|
message(STATUS "Dawn: using Abseil at ${DAWN_ABSEIL_DIR}")
|
2021-09-24 10:38:18 +00:00
|
|
|
add_subdirectory(${DAWN_ABSEIL_DIR} "${CMAKE_BINARY_DIR}/third_party/abseil")
|
2021-09-23 20:36:03 +00:00
|
|
|
endif()
|
|
|
|
|
2020-02-15 00:39:13 +00:00
|
|
|
# Header-only library for khrplatform.h
|
|
|
|
add_library(dawn_khronos_platform INTERFACE)
|
2020-10-20 17:43:00 +00:00
|
|
|
target_sources(dawn_khronos_platform INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/khronos/KHR/khrplatform.h")
|
|
|
|
target_include_directories(dawn_khronos_platform INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/khronos")
|
2020-02-18 02:12:35 +00:00
|
|
|
|
|
|
|
# Header-only library for Vulkan headers
|
|
|
|
add_library(dawn_vulkan_headers INTERFACE)
|
|
|
|
target_sources(dawn_vulkan_headers INTERFACE
|
2020-10-20 17:43:00 +00:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/khronos/vulkan/vk_icd.h"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/khronos/vulkan/vk_layer.h"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/khronos/vulkan/vk_platform.h"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/khronos/vulkan/vk_sdk_platform.h"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/khronos/vulkan/vulkan.h"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/khronos/vulkan/vulkan_core.h"
|
2020-02-18 02:12:35 +00:00
|
|
|
)
|
2020-10-20 17:43:00 +00:00
|
|
|
target_include_directories(dawn_vulkan_headers INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/khronos")
|