shaderc
shaderc copied to clipboard
${CMAKE_CFG_INTDIR} is deprecated and $<CONFIG> should be used instead
I am building shaderc with the latest Xcode (v14.2) and CMake (v3.25.2). the line set(libname ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${CMAKE_STATIC_LIBRARY_PREFIX}${new_target}${CMAKE_STATIC_LIBRARY_SUFFIX})
in shaderc/utils.cmake is not properly expanded by Xcode anymore. ${CMAKE_CFG_INTDIR}
should be replaced by $<CONFIG>
to make it work properly