1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  <copyright file="wixstdba.vcxproj" company="Outercurve Foundation">
4    Copyright (c) 2004, Outercurve Foundation.
5    This software is released under Microsoft Reciprocal License (MS-RL).
6    The license and further copyright text can be found in the file
7    LICENSE.TXT at the root directory of the distribution.
8  </copyright>
9-->
10<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
11  <ItemGroup Label="ProjectConfigurations">
12    <ProjectConfiguration Include="Debug|Win32">
13      <Configuration>Debug</Configuration>
14      <Platform>Win32</Platform>
15    </ProjectConfiguration>
16    <ProjectConfiguration Include="Release|Win32">
17      <Configuration>Release</Configuration>
18      <Platform>Win32</Platform>
19    </ProjectConfiguration>
20  </ItemGroup>
21  <PropertyGroup Label="Globals">
22    <Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
23    <Platform Condition="'$(Platform)' == ''">Win32</Platform>
24    <PlatformToolset Condition="'$(PlatformToolset)' == '' and '$(VisualStudioVersion)' == '17.0'">v143</PlatformToolset>
25    <PlatformToolset Condition="'$(PlatformToolset)' == '' and '$(VisualStudioVersion)' == '16.0'">v142</PlatformToolset>
26    <PlatformToolset Condition="'$(PlatformToolset)' == '' and ('$(MSBuildToolsVersion)' == '15.0' or '$(VisualStudioVersion)' == '15.0')">v141</PlatformToolset>
27    <PlatformToolset Condition="'$(PlatformToolset)' == ''">v140</PlatformToolset>
28    <ProjectGuid>{7A09B132-B3EE-499B-A700-A4B2157FEA3D}</ProjectGuid>
29    <TargetName>PythonBA</TargetName>
30  </PropertyGroup>
31  <Import Project="..\..\wix.props" />
32  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
33  <PropertyGroup Label="Configuration">
34    <ConfigurationType>DynamicLibrary</ConfigurationType>
35    <CharacterSet>Unicode</CharacterSet>
36    <Py_IntDir Condition="'$(Py_IntDir)' == ''">$(PySourcePath)PCbuild\obj\</Py_IntDir>
37    <IntDir>$(Py_IntDir)\$(MajorVersionNumber)$(MinorVersionNumber)$(ArchName)_$(Configuration)\msi_$(ProjectName)\</IntDir>
38    <IntDir>$(IntDir.Replace(`\\`, `\`))</IntDir>
39    <OutDir>$(IntDir)</OutDir>
40  </PropertyGroup>
41  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
42  <ItemDefinitionGroup>
43    <ClCompile>
44      <PreprocessorDefinitions Condition="$(BuildForPlatform) == 'ARM64'">ARM64=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
45      <PreprocessorDefinitions>_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
46      <AdditionalIncludeDirectories>$(WixInstallPath)sdk\inc</AdditionalIncludeDirectories>
47      <PrecompiledHeader>Use</PrecompiledHeader>
48      <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
49      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
50    </ClCompile>
51    <Link>
52      <AdditionalDependencies>comctl32.lib;gdiplus.lib;msimg32.lib;shlwapi.lib;wininet.lib;dutil.lib;balutil.lib;version.lib;uxtheme.lib;%(AdditionalDependencies)</AdditionalDependencies>
53      <AdditionalLibraryDirectories Condition="$(PlatformToolset.StartsWith(`v14`))">$(WixInstallPath)sdk\vs2017\lib\x86</AdditionalLibraryDirectories>
54      <AdditionalLibraryDirectories Condition="'$(PlatformToolset)' == 'v140'">$(WixInstallPath)sdk\vs2015\lib\x86</AdditionalLibraryDirectories>
55      <AdditionalLibraryDirectories Condition="'$(PlatformToolset)' == 'v120'">$(WixInstallPath)sdk\vs2013\lib\x86</AdditionalLibraryDirectories>
56      <ModuleDefinitionFile>pythonba.def</ModuleDefinitionFile>
57      <GenerateDebugInformation Condition="'$(Configuration)'=='Debug'">true</GenerateDebugInformation>
58    </Link>
59  </ItemDefinitionGroup>
60  <ItemGroup>
61    <ClCompile Include="PythonBootstrapperApplication.cpp" />
62    <ClCompile Include="pythonba.cpp" />
63    <ClCompile Include="pch.cpp">
64      <PrecompiledHeader>Create</PrecompiledHeader>
65    </ClCompile>
66  </ItemGroup>
67  <ItemGroup>
68    <ClInclude Include="pch.h" />
69    <ClInclude Include="resource.h" />
70  </ItemGroup>
71  <ItemGroup>
72    <None Include="pythonba.def" />
73  </ItemGroup>
74  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
75</Project>
76