Debug
Win32
Debug
x64
PGInstrument
Win32
PGInstrument
x64
PGUpdate
Win32
PGUpdate
x64
Release
Win32
Release
x64
{7E85ECCF-A72C-4DA4-9E52-884508E80BA1}
tk
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\tk.h (
IF EXIST $(tcltkDir)\bin\$(tkDLLName) (
IF EXIST $(OutDir)$(tkDLLName) (
echo Tk is already built and available.
exit /b 0
) ELSE (
echo Copying tk dll to $(OutDir)
xcopy $(tcltkDir)\bin\$(tkDLLName) $(OutDir)
exit /b 0
)
)
)
IF NOT EXIST $(tkDir) (
echo error: $(tkDir) 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 $(tkDir)\win
nmake -f makefile.vc MACHINE=%TclMachine% OPTS=%TclOpts% TCLDIR=$(SolutionDir)$(tclDir) all && nmake -f makefile.vc MACHINE=%TclMachine% OPTS=%TclOpts% TCLDIR=$(SolutionDir)$(tclDir) INSTALLDIR=$(SolutionDir)$(tcltkDir) install-binaries install-libraries && xcopy /y $(SolutionDir)$(tcltkDir)\bin\$(tkDLLName) $(OutDir)
del $(OutDir)$(tkDLLName)
echo Tk must be cleaned manually if you want to rebuild it.
{b5fd6f1d-129e-4bff-9340-03606fac7283}