diff options
| author | Michel Zou <xantares09@hotmail.com> | 2024-07-03 18:45:01 +0200 |
|---|---|---|
| committer | Charles Giessen <46324611+charles-lunarg@users.noreply.github.com> | 2024-07-11 16:58:17 -0500 |
| commit | b3fb29a274b5928160126d62cb12ae492b2f1942 (patch) | |
| tree | 5a659b5c808d02fec82eae499b85a5c2b1e5fdcd | |
| parent | 134337d7fe8813a041fd66dbde11389ebd7dd874 (diff) | |
| download | usermoji-b3fb29a274b5928160126d62cb12ae492b2f1942.tar.xz | |
CMake: Mark dependencies mandatory
Closes #959
| -rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index dfa30c46..d7f464d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,10 +55,10 @@ endif() set_property(GLOBAL PROPERTY USE_FOLDERS ON) -find_package(VulkanHeaders REQUIRED QUIET CONFIG) -find_package(volk REQUIRED QUIET CONFIG) +find_package(VulkanHeaders QUIET REQUIRED CONFIG) +find_package(volk REQUIRED QUIET REQUIRED CONFIG) if (APPLE OR BUILD_TESTS) - find_package(VulkanLoader REQUIRED QUIET CONFIG) + find_package(VulkanLoader QUIET REQUIRED CONFIG) endif() include(GNUInstallDirs) |
