From 2eb357b2edd4721e5e875b8d5a64a5e33985db56 Mon Sep 17 00:00:00 2001 From: Pasha Bibko <156938226+PashaBibko@users.noreply.github.com> Date: Sat, 15 Nov 2025 18:25:49 +0000 Subject: [PATCH] Made VulkanRenderer.h a PCH --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 979f592..bb4a50e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,6 +38,8 @@ add_executable(VulkanRenderer src/VulkanRenderer.h ) +target_precompile_headers(VulkanRenderer PRIVATE src/VulkanRenderer.h) + # Links the libraries to the binary # target_link_libraries(VulkanRenderer PRIVATE Vulkan::Vulkan