blob: bcd39512b0ac0045a0bfbf0ae45301ad47ccb8e6 [file] [log] [blame]
Steve Dowerbb240872015-02-05 22:08:48 -08001<?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 '$(VCTargetsPath14)' != ''">v140</PlatformToolset>
25 <PlatformToolset Condition="'$(PlatformToolset)' == '' and '$(VCTargetsPath12)' != ''">v120</PlatformToolset>
26 <ProjectGuid>{7A09B132-B3EE-499B-A700-A4B2157FEA3D}</ProjectGuid>
27 <TargetName>PythonBA</TargetName>
28 </PropertyGroup>
29 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
30 <Import Project="..\..\wix.props" />
31 <PropertyGroup Label="Configuration">
32 <ConfigurationType>DynamicLibrary</ConfigurationType>
33 <CharacterSet>Unicode</CharacterSet>
Steve Dower6fd76bc2016-07-16 16:13:19 -070034 <IntDir>$(Py_IntDir)\$(Configuration)_$(Platform)_Setup\Bootstrap\</IntDir>
Steve Dowerbb240872015-02-05 22:08:48 -080035 <OutDir>$(IntDir)</OutDir>
36 </PropertyGroup>
37 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
38 <ItemDefinitionGroup>
39 <ClCompile>
40 <PreprocessorDefinitions>_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
41 <AdditionalIncludeDirectories>$(WixInstallPath)sdk\inc</AdditionalIncludeDirectories>
42 <PrecompiledHeader>Use</PrecompiledHeader>
43 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
44 <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
45 </ClCompile>
46 <Link>
47 <AdditionalDependencies>comctl32.lib;gdiplus.lib;msimg32.lib;shlwapi.lib;wininet.lib;dutil.lib;balutil.lib;version.lib;uxtheme.lib;%(AdditionalDependencies)</AdditionalDependencies>
48 <AdditionalLibraryDirectories Condition="'$(PlatformToolset)' == 'v140'">$(WixInstallPath)sdk\vs2015\lib\x86</AdditionalLibraryDirectories>
49 <AdditionalLibraryDirectories Condition="'$(PlatformToolset)' == 'v120'">$(WixInstallPath)sdk\vs2013\lib\x86</AdditionalLibraryDirectories>
50 <ModuleDefinitionFile>pythonba.def</ModuleDefinitionFile>
51 <GenerateDebugInformation Condition="'$(Configuration)'=='Debug'">true</GenerateDebugInformation>
52 </Link>
53 </ItemDefinitionGroup>
54 <ItemGroup>
55 <ClCompile Include="PythonBootstrapperApplication.cpp" />
56 <ClCompile Include="pythonba.cpp" />
57 <ClCompile Include="pch.cpp">
58 <PrecompiledHeader>Create</PrecompiledHeader>
59 </ClCompile>
60 </ItemGroup>
61 <ItemGroup>
62 <ClInclude Include="pch.h" />
63 <ClInclude Include="resource.h" />
64 </ItemGroup>
65 <ItemGroup>
66 <None Include="pythonba.def" />
67 </ItemGroup>
68 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
69</Project>