mirror of
https://github.com/KhronosGroup/Vulkan-Utility-Libraries.git
synced 2025-06-01 01:18:01 +00:00

- Static library - Add overrides, not necessary yet but it will be when other parts of this repo wants to find Vulkan-Headers - Remove unused dependency on Vulkan-Headers from the settings library - Remove unreachable return flagged by clang
20 lines
632 B
Text
20 lines
632 B
Text
# Copyright 2023-2023 LunarG, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import("//build_overrides/vulkan_utility_libraries.gni")
|
|
|
|
static_library("vulkan_layer_settings") {
|
|
include_dirs = [ "include" ]
|
|
sources = [
|
|
"include/vulkan/layer/vk_layer_settings.h",
|
|
"include/vulkan/layer/vk_layer_settings.hpp",
|
|
"include/vulkan/layer/vk_layer_settings_ext.h",
|
|
"src/layer/layer_settings_manager.cpp",
|
|
"src/layer/layer_settings_manager.hpp",
|
|
"src/layer/layer_settings_util.cpp",
|
|
"src/layer/layer_settings_util.hpp",
|
|
"src/layer/vk_layer_settings.cpp",
|
|
"src/layer/vk_layer_settings_helper.cpp",
|
|
]
|
|
}
|