Zachary Ware | a191b91 | 2014-03-21 22:58:19 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
Steve Dower | 65e4cb1 | 2014-11-22 12:54:57 -0800 | [diff] [blame] | 3 | <Import Project="pyproject.props" /> |
| 4 | <PropertyGroup> |
| 5 | <TclMajorVersion>8</TclMajorVersion> |
| 6 | <TclMinorVersion>6</TclMinorVersion> |
Zachary Ware | fb8ca22 | 2014-12-15 15:42:10 -0600 | [diff] [blame] | 7 | <TclPatchLevel>3</TclPatchLevel> |
| 8 | <TclRevision>1</TclRevision> |
Steve Dower | 65e4cb1 | 2014-11-22 12:54:57 -0800 | [diff] [blame] | 9 | <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> |
| 16 | <TixRevision>4</TixRevision> |
Zachary Ware | fb8ca22 | 2014-12-15 15:42:10 -0600 | [diff] [blame] | 17 | <tclDir>$(ExternalsDir)tcl-core-$(TclMajorVersion).$(TclMinorVersion).$(TclPatchLevel).$(TclRevision)\</tclDir> |
Steve Dower | 65e4cb1 | 2014-11-22 12:54:57 -0800 | [diff] [blame] | 18 | <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> |
| 40 | <BuildDirTop Condition="$(VisualStudioVersion) == '14.0'">$(BuildDirTop)_VC13</BuildDirTop> |
| 41 | <BuildDirTop Condition="$(VisualStudioVersion) == '12.0'">$(BuildDirTop)_VC12</BuildDirTop> |
| 42 | <BuildDirTop Condition="$(VisualStudioVersion) == '11.0'">$(BuildDirTop)_VC11</BuildDirTop> |
| 43 | <BuildDirTop Condition="$(VisualStudioVersion) == '10.0'">$(BuildDirTop)_VC10</BuildDirTop> |
Zachary Ware | a191b91 | 2014-03-21 22:58:19 -0500 | [diff] [blame] | 44 | </PropertyGroup> |
Zachary Ware | a191b91 | 2014-03-21 22:58:19 -0500 | [diff] [blame] | 45 | </Project> |