Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions en/02_Development_environment.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ your auto-start for your terminal and IDE setup such that those environment
variables work everywhere.

If you receive an error message, then ensure that your drivers are up to date,
include the Vulkan runtime and that your graphics card is supported. See the
include the Vulkan runtime and that your graphics card is supported. See the
xref:00_Introduction.adoc[introduction chapter] for links to drivers from the major
vendors.

Expand Down Expand Up @@ -129,8 +129,9 @@ find_package (Vulkan REQUIRED)
add_library(VulkanCppModule)
add_library(Vulkan::cppm ALIAS VulkanCppModule)

target_compile_definitions(VulkanCppModule
PUBLIC VULKAN_HPP_DISPATCH_LOADER_DYNAMIC=1
ttarget_compile_definitions(VulkanCppModule PUBLIC
VULKAN_HPP_DISPATCH_LOADER_DYNAMIC=1
VULKAN_HPP_NO_STRUCT_CONSTRUCTORS=1
)
target_include_directories(VulkanCppModule
PRIVATE
Expand Down
Loading