Use Improvements in CMake Generator Expressions to Simplify our Build System's ones #93370
Labels
area-Infrastructure-coreclr
in-pr
There is an active PR which will close this issue when it is merged
Milestone
Now that we officially CMake 3.20 in our build system, we can simplify some of our generator expressions using some new features. For example, we can now simplify
$<OR:$<CONFIG:X>,$<CONFIG:Y>>:-flag>
to just$<$<CONFIG:X,Y>:-flag>
.Find the expressions like that in the build system and simplify them.
The text was updated successfully, but these errors were encountered: