blob: 57bb98aeebede41d6b6e539a1b1b54f7bbee86bd [file] [log] [blame]
Zachary Warea191b912014-03-21 22:58:19 -05001<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
Steve Dower65e4cb12014-11-22 12:54:57 -08003 <Import Project="pyproject.props" />
4 <PropertyGroup>
5 <TclMajorVersion>8</TclMajorVersion>
6 <TclMinorVersion>6</TclMinorVersion>
Zachary Ware28c31842016-07-28 18:39:11 -05007 <TclPatchLevel>6</TclPatchLevel>
8 <TclRevision>0</TclRevision>
Steve Dower65e4cb12014-11-22 12:54:57 -08009 <TkMajorVersion>$(TclMajorVersion)</TkMajorVersion>
10 <TkMinorVersion>$(TclMinorVersion)</TkMinorVersion>
11 <TkPatchLevel>$(TclPatchLevel)</TkPatchLevel>
12 <TkRevision>$(TclRevision)</TkRevision>
13 <TixMajorVersion>8</TixMajorVersion>
14 <TixMinorVersion>4</TixMinorVersion>
15 <TixPatchLevel>3</TixPatchLevel>
Steve Dowerab2a34a2015-08-19 08:39:12 -070016 <TixRevision>6</TixRevision>
Zachary Warefb8ca222014-12-15 15:42:10 -060017 <tclDir>$(ExternalsDir)tcl-core-$(TclMajorVersion).$(TclMinorVersion).$(TclPatchLevel).$(TclRevision)\</tclDir>
Steve Dower65e4cb12014-11-22 12:54:57 -080018 <tkDir>$(ExternalsDir)tk-$(TkMajorVersion).$(TkMinorVersion).$(TkPatchLevel).$(TkRevision)\</tkDir>
19 <tixDir>$(ExternalsDir)tix-$(TixMajorVersion).$(TixMinorVersion).$(TixPatchLevel).$(TixRevision)\</tixDir>
20 <tcltkDir>$(ExternalsDir)tcltk\</tcltkDir>
21 <tcltkDir Condition="'$(Platform)' == 'x64'">$(ExternalsDir)tcltk64\</tcltkDir>
22 <TclDebugExt Condition="'$(Configuration)' == 'Debug'">g</TclDebugExt>
23 <tclDLLName>tcl$(TclMajorVersion)$(TclMinorVersion)t$(TclDebugExt).dll</tclDLLName>
24 <tclLibName>tcl$(TclMajorVersion)$(TclMinorVersion)t$(TclDebugExt).lib</tclLibName>
25 <tclShExeName>tclsh$(TclMajorVersion)$(TclMinorVersion)t$(TclDebugExt).exe</tclShExeName>
26 <tkDLLName>tk$(TkMajorVersion)$(TkMinorVersion)t$(TclDebugExt).dll</tkDLLName>
27 <tkLibName>tk$(TkMajorVersion)$(TkMinorVersion)t$(TclDebugExt).lib</tkLibName>
28 <tixDLLName>tix$(TixMajorVersion)$(TixMinorVersion)$(TclDebugExt).dll</tixDLLName>
29 <tixDLLPath>$(tcltkDir)lib\tix$(TixMajorVersion).$(TixMinorVersion).$(TixPatchLevel)\$(tixDLLName)</tixDLLPath>
30 <tcltkLib>$(tcltkDir)lib\tcl$(TclMajorVersion)$(TclMinorVersion)t$(TclDebugExt).lib;$(tcltkDir)lib\tk$(TkMajorVersion)$(TkMinorVersion)t$(TclDebugExt).lib</tcltkLib>
31 <TclMachine>IX86</TclMachine>
32 <TclMachine Condition="'$(Platform)' == 'x64'">AMD64</TclMachine>
33 <TclVersions>TCL_MAJOR_VERSION=$(TclMajorVersion) TCL_MINOR_VERSION=$(TclMinorVersion) TCL_PATCH_LEVEL=$(TclPatchLevel)</TclVersions>
34 <TclShortVersions>TCL_MAJOR=$(TclMajorVersion) TCL_MINOR=$(TclMinorVersion) TCL_PATCH=$(TclPatchLevel)</TclShortVersions>
35 <TkVersions>TK_MAJOR_VERSION=$(TkMajorVersion) TK_MINOR_VERSION=$(TkMinorVersion) TK_PATCH_LEVEL=$(TkPatchLevel)</TkVersions>
36
37 <BuildDirTop>Release</BuildDirTop>
38 <BuildDirTop Condition="$(Configuration) == 'Debug'">Debug</BuildDirTop>
39 <BuildDirTop Condition="$(TclMachine) != 'IX86'">$(BuildDirTop)_$(TclMachine)</BuildDirTop>
Steve Dowerd3722e72016-03-12 08:38:55 -080040 <BuildDirTop Condition="$(PlatformToolset) == 'v140'">$(BuildDirTop)_VC13</BuildDirTop>
41 <BuildDirTop Condition="$(PlatformToolset) == 'v120'">$(BuildDirTop)_VC12</BuildDirTop>
42 <BuildDirTop Condition="$(PlatformToolset) == 'v110'">$(BuildDirTop)_VC11</BuildDirTop>
43 <BuildDirTop Condition="$(PlatformToolset) == 'v100'">$(BuildDirTop)_VC10</BuildDirTop>
Zachary Warea191b912014-03-21 22:58:19 -050044 </PropertyGroup>
Zachary Ware28c31842016-07-28 18:39:11 -050045</Project>