Debug
Win32
Debug
x64
PGInstrument
Win32
PGInstrument
x64
PGUpdate
Win32
PGUpdate
x64
Release
Win32
Release
x64
{B5FD6F1D-129E-4BFF-9340-03606FAC7283}
tcl
MakeFileProj
Makefile
NotSet
Makefile
NotSet
Makefile
NotSet
Makefile
NotSet
Makefile
NotSet
Makefile
NotSet
Makefile
NotSet
Makefile
NotSet
<_ProjectFileVersion>10.0.30319.1
IF EXIST $(tcltkDir)\include\tcl.h (
IF EXIST $(tcltkDir)\bin\$(tclDLLName) (
IF EXIST $(OutDir)$(tclDLLName) (
echo Tcl is already built and available.
exit /b 0
) ELSE (
echo Copying tcl dll to $(OutDir)
xcopy $(tcltkDir)\bin\$(tclDLLName) $(OutDir)
exit /b 0
)
)
)
IF NOT EXIST $(tclDir) (
echo error: $(tclDir) doesn't exist.
exit 1
)
IF "$(Platform)" EQU "Win32" set TclMachine=IX86
IF "$(Platform)" EQU "x64" set TclMachine=AMD64
IF "$(Configuration)" EQU "Debug" (
set TclOpts=symbols
) ELSE (
set TclOpts=
)
cd $(tclDir)\win
nmake -f makefile.vc MACHINE=%TclMachine% OPTS=%TclOpts% core shell dlls && nmake -f makefile.vc MACHINE=%TclMachine% OPTS=%TclOpts% INSTALLDIR=$(SolutionDir)$(tcltkDir) install-binaries install-libraries && xcopy /y $(SolutionDir)$(tcltkDir)\bin\$(tclDLLName) $(OutDir)
del $(OutDir)$(tclDLLName)
echo Tcl must be cleaned manually if you want to rebuild it.