From 78e8e8797afed43c57aba9b75de60710c4a36e79 Mon Sep 17 00:00:00 2001 From: Srijan Dhungana Date: Tue, 14 Nov 2023 22:21:10 +0200 Subject: [PATCH] Add Vulkan dxc component to find_package --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e1e865..075b64a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.25) project("Vulray") -find_package(Vulkan 1.3 REQUIRED) +find_package(Vulkan 1.3 COMPONENTS dxc) # -------------- Options --------------