I want to use the precompiled static shaderc_combined.lib from VulkanSDK 1.3.290 and i cannot get it to link properly.
Shaderc's includes are handled through ${Vulkan_INCLUDE_DIRS}
I'm using mingw with clion and gcc on windows.
Resolved.
shaderc_combined.lib from VulkanSDK is compiled with MSVC on windows making it obviously uncompatible with MinGW and GCC.
I compiled with CMake and MinGW from source now and it works.
I want to use the precompiled static shaderc_combined.lib from VulkanSDK 1.3.290 and i cannot get it to link properly. Shaderc's includes are handled through
${Vulkan_INCLUDE_DIRS}
I'm using mingw with clion and gcc on windows.CMakeLists.txt:
Here is a small snippet from the build output:
and here the entire build output: build_output.txt
Am i missing something or am i doing something wrong?