diff options
author | Steve Dower <steve.dower@python.org> | 2022-03-28 23:21:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-28 23:21:08 (GMT) |
commit | bad86a621af61f383b9f06fe4a08f66245df99e2 (patch) | |
tree | 0d52b1d9356c9cd73947db5a63d9829f9c5af2f4 /PCbuild/pylauncher.vcxproj | |
parent | 5c30388f3c586ba2f33e349e22e5949cb92de621 (diff) | |
download | cpython-bad86a621af61f383b9f06fe4a08f66245df99e2.zip cpython-bad86a621af61f383b9f06fe4a08f66245df99e2.tar.gz cpython-bad86a621af61f383b9f06fe4a08f66245df99e2.tar.bz2 |
bpo-46566: Add new py.exe launcher implementation (GH-32062)
Diffstat (limited to 'PCbuild/pylauncher.vcxproj')
-rw-r--r-- | PCbuild/pylauncher.vcxproj | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/PCbuild/pylauncher.vcxproj b/PCbuild/pylauncher.vcxproj index 550e084..35f2f7e 100644 --- a/PCbuild/pylauncher.vcxproj +++ b/PCbuild/pylauncher.vcxproj @@ -76,7 +76,7 @@ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <PropertyGroup Label="Configuration"> <ConfigurationType>Application</ConfigurationType> - <CharacterSet>MultiByte</CharacterSet> + <CharacterSet>Unicode</CharacterSet> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <ImportGroup Label="ExtensionSettings"> @@ -95,12 +95,12 @@ <RuntimeLibrary>MultiThreaded</RuntimeLibrary> </ClCompile> <Link> - <AdditionalDependencies>version.lib;%(AdditionalDependencies)</AdditionalDependencies> + <AdditionalDependencies>shell32.lib;pathcch.lib;%(AdditionalDependencies)</AdditionalDependencies> <SubSystem>Console</SubSystem> </Link> </ItemDefinitionGroup> <ItemGroup> - <ClCompile Include="..\PC\launcher.c" /> + <ClCompile Include="..\PC\launcher2.c" /> </ItemGroup> <ItemGroup> <None Include="..\PC\launcher.ico" /> |