diff options
| -rw-r--r-- | ports/windows/msvc/common.props | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/windows/msvc/common.props b/ports/windows/msvc/common.props index d949e3df4..55c9c934f 100644 --- a/ports/windows/msvc/common.props +++ b/ports/windows/msvc/common.props @@ -3,14 +3,14 @@ <!-- Variant support. For compatibility with how it works for the other ports, this gets imported early so variants cannot override build options like the ones specified in the rest of this file. Use CustomPropsFile (see the .vcxproj file) for that. --> - <PropertyGroup> + <PropertyGroup Condition="'$(PyBuildingMpyCross)' != 'True'"> <PyVariant Condition="'$(PyVariant)' == ''">standard</PyVariant> <PyBuild Condition="'$(PyBuild)' == ''">build-$(PyVariant)</PyBuild> <PyProg Condition="'$(PyProg)' == ''">micropython</PyProg> </PropertyGroup> <ImportGroup Label="PropertySheets"> <Import Project="paths.props" Condition="'$(PyPathsIncluded)' != 'True'"/> - <Import Project="$(PyVariantDir)mpconfigvariant.props"/> + <Import Condition="'$(PyBuildingMpyCross)' != 'True'" Project="$(PyVariantDir)mpconfigvariant.props"/> </ImportGroup> <PropertyGroup Label="UserMacros" /> <PropertyGroup> |
