2014-03-22 03:58:19 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
|
|
|
<ProjectConfiguration Include="Debug|Win32">
|
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
|
<Platform>Win32</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
2014-11-22 20:54:57 +00:00
|
|
|
|
<ProjectConfiguration Include="Release|Win32">
|
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
|
<Platform>Win32</Platform>
|
2014-03-22 03:58:19 +00:00
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
<ProjectConfiguration Include="PGInstrument|Win32">
|
|
|
|
|
<Configuration>PGInstrument</Configuration>
|
|
|
|
|
<Platform>Win32</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
<ProjectConfiguration Include="PGInstrument|x64">
|
|
|
|
|
<Configuration>PGInstrument</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
<ProjectConfiguration Include="PGUpdate|Win32">
|
|
|
|
|
<Configuration>PGUpdate</Configuration>
|
|
|
|
|
<Platform>Win32</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
<ProjectConfiguration Include="PGUpdate|x64">
|
|
|
|
|
<Configuration>PGUpdate</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
2014-11-22 20:54:57 +00:00
|
|
|
|
<ProjectConfiguration Include="Debug|x64">
|
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
2014-03-22 03:58:19 +00:00
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
<ProjectConfiguration Include="Release|x64">
|
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
|
<ProjectGuid>{B5FD6F1D-129E-4BFF-9340-03606FAC7283}</ProjectGuid>
|
|
|
|
|
</PropertyGroup>
|
2014-11-22 20:54:57 +00:00
|
|
|
|
|
|
|
|
|
<Import Project="python.props" />
|
2014-03-22 03:58:19 +00:00
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
2014-11-22 20:54:57 +00:00
|
|
|
|
<Import Project="tcltk.props" />
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Label="Configuration">
|
2014-03-22 03:58:19 +00:00
|
|
|
|
<ConfigurationType>Makefile</ConfigurationType>
|
2014-11-22 20:54:57 +00:00
|
|
|
|
<OutDir>$(tcltkDir)</OutDir>
|
|
|
|
|
<TargetPath>$(OutDir)bin\$(tclDLLName)</TargetPath>
|
2014-03-22 03:58:19 +00:00
|
|
|
|
</PropertyGroup>
|
2014-11-22 20:54:57 +00:00
|
|
|
|
|
2014-03-22 03:58:19 +00:00
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
2014-11-22 20:54:57 +00:00
|
|
|
|
|
2014-03-22 03:58:19 +00:00
|
|
|
|
<PropertyGroup>
|
2015-09-09 04:39:01 +00:00
|
|
|
|
<TclOpts>msvcrt</TclOpts>
|
|
|
|
|
<TclOpts Condition="$(Configuration) == 'Debug'">symbols,msvcrt</TclOpts>
|
2014-11-22 20:54:57 +00:00
|
|
|
|
<TclDirs>INSTALLDIR="$(OutDir.TrimEnd(`\`))" INSTALL_DIR="$(OutDir.TrimEnd(`\`))"</TclDirs>
|
|
|
|
|
<DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUGFLAGS="-wd4456 -wd4457 -wd4458 -wd4459 -wd4996"</DebugFlags>
|
|
|
|
|
<NMakeBuildCommandLine>setlocal
|
|
|
|
|
set VCINSTALLDIR=$(VCInstallDir)
|
|
|
|
|
cd /D "$(tclDir)win"
|
|
|
|
|
nmake -f makefile.vc MACHINE=$(TclMachine) OPTS=$(TclOpts) $(TclDirs) $(DebugFlags) core shell dlls
|
|
|
|
|
nmake -f makefile.vc MACHINE=$(TclMachine) OPTS=$(TclOpts) $(TclDirs) $(DebugFlags) install-binaries install-libraries
|
2017-07-17 09:15:48 +00:00
|
|
|
|
copy /Y ..\license.terms "$(OutDir)\tcllicense.terms"
|
2014-11-22 20:54:57 +00:00
|
|
|
|
</NMakeBuildCommandLine>
|
2014-03-22 03:58:19 +00:00
|
|
|
|
</PropertyGroup>
|
2014-11-22 20:54:57 +00:00
|
|
|
|
|
2014-03-22 03:58:19 +00:00
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
2017-07-17 09:15:48 +00:00
|
|
|
|
|
2014-11-22 20:54:57 +00:00
|
|
|
|
<Target Name="Clean" />
|
2016-07-15 18:55:52 +00:00
|
|
|
|
|
|
|
|
|
<Target Name="ResolveAssemblyReferences" />
|
2014-03-22 03:58:19 +00:00
|
|
|
|
</Project>
|