mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
14 lines
572 B
Plaintext
14 lines
572 B
Plaintext
|
isEmpty(QMAKE_INCDIR_VULKAN) {
|
||
|
# Pick up the VULKAN_SDK env var set by the LunarG SDK so that the Vulkan
|
||
|
# headers are found out-of-the-box on typical Windows setups.
|
||
|
QMAKE_INCDIR_VULKAN = $$(VULKAN_SDK)/include
|
||
|
|
||
|
# Do not add default include paths as that can knock std headers
|
||
|
# out of their stride due to their usage of #include_next.
|
||
|
contains(QMAKE_DEFAULT_INCDIRS, $$re_escape($$QMAKE_INCDIR_VULKAN)): \
|
||
|
QMAKE_INCDIR_VULKAN =
|
||
|
|
||
|
# Do not export the include dir but resolve it on every qmake call.
|
||
|
QMAKE_EXPORT_INCDIR_VULKAN = -
|
||
|
}
|