I'm converting a MSBuild project to a cmake project (IDE is Visual Studio 2022).
MSBuild properties page allows setting selected dlls to be "delay-loaded" but searching online leaves me finding nothing about a similar flag or configuration setting to enable this in my CMakeLists.txt for the cmake build when I setup my target_link_libraries().
Am I missing a way to do this with a CMAKE_ variable or other command, or is this simply not a supported feature of cmake since it evolved as a Linux tool and delay-loading isn't really a thing there?