3 # This script is used to generate a VSIX (Visual Studio Extension) file for
4 # SQLite usable by Visual Studio.
8 # 1. Tcl 8.4 and later are supported, earlier versions have not been tested.
10 # 2. The "sqlite3.h" file is assumed to exist in the parent directory of the
11 # directory containing this script. The [optional] second command line
12 # argument to this script may be used to specify an alternate location.
13 # This script also assumes that the "sqlite3.h" file corresponds with the
14 # version of the binaries to be packaged. This assumption is not verified
17 # 3. The temporary directory specified in the TEMP or TMP environment variables
18 # must refer to an existing directory writable by the current user.
20 # 4. The "zip" and "unzip" command line tools must be located either in a
21 # directory contained in the PATH environment variable or specified as the
22 # exact file names to execute in the "ZipTool" and "UnZipTool" environment
23 # variables, respectively.
25 # 5. The template VSIX file (which is basically a zip file) must be located in
26 # a "win" directory inside the directory containing this script. It should
27 # not contain any executable binaries. It should only contain dynamic
28 # textual content files to be processed using [subst] and/or static content
29 # files to be copied verbatim.
31 # 6. The executable and other compiled binary files to be packaged into the
32 # final VSIX file (e.g. DLLs, LIBs, and PDBs) must be located in a single
33 # directory tree. The top-level directory of the tree must be specified as
34 # the first command line argument to this script. The second level
35 # sub-directory names must match those of the build configuration (e.g.
36 # "Debug" or "Retail"). The third level sub-directory names must match
37 # those of the platform (e.g. "x86", "x64", and "ARM"). For example, the
38 # binary files to be packaged would need to be organized as follows when
39 # packaging the "Debug" and "Retail" build configurations for the "x86" and
40 # "x64" platforms (in this example, "C:\temp" is the top-level directory as
41 # specified in the first command line argument):
43 # C:\Temp\Debug\x86\sqlite3.lib
44 # C:\Temp\Debug\x86\sqlite3.dll
45 # C:\Temp\Debug\x86\sqlite3.pdb
46 # C:\Temp\Debug\x64\sqlite3.lib
47 # C:\Temp\Debug\x64\sqlite3.dll
48 # C:\Temp\Debug\x64\sqlite3.pdb
49 # C:\Temp\Retail\x86\sqlite3.lib
50 # C:\Temp\Retail\x86\sqlite3.dll
51 # C:\Temp\Retail\x86\sqlite3.pdb
52 # C:\Temp\Retail\x64\sqlite3.lib
53 # C:\Temp\Retail\x64\sqlite3.dll
54 # C:\Temp\Retail\x64\sqlite3.pdb
56 # The above directory tree organization is performed automatically if the
57 # "tool\build-all-msvc.bat" batch script is used to build the binary files
62 # The first argument to this script is required and must be the name of the
63 # top-level directory containing the directories and files organized into a
64 # tree as described in item 6 of the PREREQUISITES section, above. The second
65 # argument is optional and if present must contain the name of the directory
66 # containing the root of the source tree for SQLite. The third argument is
67 # optional and if present must contain the flavor the VSIX package to build.
68 # Currently, the only supported package flavors are "WinRT", "WinRT81", "WP80",
69 # "WP81", and "Win32". The fourth argument is optional and if present must be
70 # a string containing a list of platforms to include in the VSIX package. The
71 # platform list is "platform1,platform2,platform3". The fifth argument is
72 # optional and if present must contain the version of Visual Studio required by
73 # the package. Currently, the only supported versions are "2012" and "2013".
74 # The package flavors "WinRT81" and "WP81" are only supported when the Visual
75 # Studio version is "2013". Typically, when on Windows, this script is
76 # executed using commands similar to the following from a normal Windows
79 # CD /D C:\dev\sqlite\core
80 # tclsh85 tool\mkvsix.tcl C:\Temp
82 # In the example above, "C:\dev\sqlite\core" represents the root of the source
83 # tree for SQLite and "C:\Temp" represents the top-level directory containing
84 # the executable and other compiled binary files, organized into a directory
85 # tree as described in item 6 of the PREREQUISITES section, above.
87 # This script should work on non-Windows platforms as well, provided that all
88 # the requirements listed in the PREREQUISITES section are met.
92 # The temporary directory is used as a staging area for the final VSIX file.
93 # The template VSIX file is extracted, its contents processed, and then the
94 # resulting files are packaged into the final VSIX file.
96 package require
Tcl 8.4
98 proc fail
{ {error ""} {usage false
} } {
99 if {[string length
$error] > 0} then
{
101 if {!$usage} then
{exit 1}
105 [file tail [info nameofexecutable]]\
106 [file tail [info script]] <binaryDirectory> \[sourceDirectory\]\
107 \[packageFlavor\] \[platformNames\] \[vsVersion\]"
112 proc getEnvironmentVariable
{ name
} {
114 # NOTE: Returns the value of the specified environment variable or an empty
115 # string for environment variables that do not exist in the current
116 # process environment.
118 return [expr {[info exists
::env($name)] ?
$::env($name) : ""}]
121 proc getTemporaryPath
{} {
123 # NOTE: Returns the normalized path to the first temporary directory found
124 # in the typical set of environment variables used for that purpose
125 # or an empty string to signal a failure to locate such a directory.
129 foreach name
[list TEMP TMP
] {
130 lappend names
[string toupper
$name] [string tolower
$name] \
131 [string totitle
$name]
134 foreach name
$names {
135 set value
[getEnvironmentVariable
$name]
137 if {[string length
$value] > 0} then
{
138 return [file normalize
$value]
145 proc appendArgs
{ args
} {
147 # NOTE: Returns all passed arguments joined together as a single string with
148 # no intervening spaces between arguments.
150 eval append result
$args
153 proc readFile
{ fileName
} {
155 # NOTE: Reads and returns the entire contents of the specified file, which
156 # may contain binary data.
158 set file_id
[open $fileName RDONLY
]
159 fconfigure $file_id -encoding binary -translation binary
160 set result
[read $file_id]
165 proc writeFile
{ fileName data
} {
167 # NOTE: Writes the entire contents of the specified file, which may contain
170 set file_id
[open $fileName {WRONLY CREAT TRUNC
}]
171 fconfigure $file_id -encoding binary -translation binary
172 puts -nonewline $file_id $data
177 proc getMinVsVersionXmlChunk
{ vsVersion
} {
178 switch -exact $vsVersion {
181 "\r\n " {MinVSVersion
="11.0"}]
185 "\r\n " {MinVSVersion
="12.0"}]
193 proc getMaxPlatformVersionXmlChunk
{ packageFlavor vsVersion
} {
195 # NOTE: Only Visual Studio 2013 supports this SDK manifest attribute.
197 if {![string equal
$vsVersion 2013]} then
{
201 switch -exact $packageFlavor {
204 "\r\n " {MaxPlatformVersion
="8.0"}]
208 "\r\n " {MaxPlatformVersion
="8.1"}]
212 "\r\n " {MaxPlatformVersion
="8.0"}]
216 "\r\n " {MaxPlatformVersion
="8.1"}]
224 proc getExtraFileListXmlChunk
{ packageFlavor vsVersion
} {
226 # NOTE: Windows Phone 8.0 does not require any extra attributes in its VSIX
227 # package SDK manifests; however, it appears that Windows Phone 8.1
230 if {[string equal
$packageFlavor WP80
]} then
{
234 set appliesTo
[expr {[string equal
$packageFlavor Win32
] ?
\
235 "VisualC" : "WindowsAppContainer"}]
237 switch -exact $vsVersion {
240 "\r\n " AppliesTo
=\" $appliesTo \" \
241 "\r\n " {DependsOn
="Microsoft.VCLibs, version=11.0"}]
245 "\r\n " AppliesTo
=\" $appliesTo \" \
246 "\r\n " {DependsOn
="Microsoft.VCLibs, version=12.0"}]
254 proc replaceFileNameTokens
{ fileName name buildName platformName
} {
256 # NOTE: Returns the specified file name containing the platform name instead
257 # of platform placeholder tokens.
259 return [string map
[list <build
> $buildName <platform
> $platformName \
260 <name
> $name] $fileName]
263 proc substFile
{ fileName
} {
265 # NOTE: Performs all Tcl command, variable, and backslash substitutions in
266 # the specified file and then rewrites the contents of that same file
267 # with the substituted data.
269 return [writeFile
$fileName [uplevel 1 [list subst [readFile
$fileName]]]]
273 # NOTE: This is the entry point for this script.
275 set script
[file normalize
[info script
]]
277 if {[string length
$script] == 0} then
{
278 fail
"script file currently being evaluated is unknown" true
281 set path
[file dirname
$script]
282 set rootName
[file rootname
[file tail
$script]]
284 ###############################################################################
287 # NOTE: Process and verify all the command line arguments.
289 set argc
[llength $argv]
290 if {$argc < 1 ||
$argc > 5} then
{fail
}
292 set binaryDirectory
[lindex $argv 0]
294 if {[string length
$binaryDirectory] == 0} then
{
295 fail
"invalid binary directory"
298 if {![file exists
$binaryDirectory] ||
\
299 ![file isdirectory
$binaryDirectory]} then
{
300 fail
"binary directory does not exist"
303 if {$argc >= 2} then
{
304 set sourceDirectory
[lindex $argv 1]
307 # NOTE: Assume that the source directory is the parent directory of the one
308 # that contains this script file.
310 set sourceDirectory
[file dirname
$path]
313 if {[string length
$sourceDirectory] == 0} then
{
314 fail
"invalid source directory"
317 if {![file exists
$sourceDirectory] ||
\
318 ![file isdirectory
$sourceDirectory]} then
{
319 fail
"source directory does not exist"
322 if {$argc >= 3} then
{
323 set packageFlavor
[lindex $argv 2]
326 # NOTE: Assume the package flavor is WinRT.
328 set packageFlavor WinRT
331 if {[string length
$packageFlavor] == 0} then
{
332 fail
"invalid package flavor"
335 if {$argc >= 4} then
{
336 set platformNames
[list]
338 foreach platformName
[split [lindex $argv 3] ", "] {
339 set platformName
[string trim
$platformName]
341 if {[string length
$platformName] > 0} then
{
342 lappend platformNames
$platformName
347 if {$argc >= 5} then
{
348 set vsVersion
[lindex $argv 4]
353 if {[string length
$vsVersion] == 0} then
{
354 fail
"invalid Visual Studio version"
357 if {![string equal
$vsVersion 2012] && ![string equal
$vsVersion 2013]} then
{
359 "unsupported Visual Studio version, must be one of: " \
363 set shortNames
(WinRT
,2012) SQLite.WinRT
364 set shortNames
(WinRT
,2013) SQLite.WinRT
.2013
365 set shortNames
(WinRT81
,2013) SQLite.WinRT81
366 set shortNames
(WP80
,2012) SQLite.WP80
367 set shortNames
(WP80
,2013) SQLite.WP80.2013
368 set shortNames
(WP81
,2013) SQLite.WP81
369 set shortNames
(Win32
,2012) SQLite.Win32
370 set shortNames
(Win32
,2013) SQLite.Win32.2013
372 set displayNames
(WinRT
,2012) "SQLite for Windows Runtime"
373 set displayNames
(WinRT
,2013) "SQLite for Windows Runtime"
374 set displayNames
(WinRT81
,2013) "SQLite for Windows Runtime (Windows 8.1)"
375 set displayNames
(WP80
,2012) "SQLite for Windows Phone"
376 set displayNames
(WP80
,2013) "SQLite for Windows Phone"
377 set displayNames
(WP81
,2013) "SQLite for Windows Phone 8.1"
378 set displayNames
(Win32
,2012) "SQLite for Windows"
379 set displayNames
(Win32
,2013) "SQLite for Windows"
381 if {[string equal
$packageFlavor WinRT
]} then
{
382 set shortName
$shortNames($packageFlavor,$vsVersion)
383 set displayName
$displayNames($packageFlavor,$vsVersion)
384 set targetPlatformIdentifier Windows
385 set targetPlatformVersion v8.0
386 set minVsVersion
[getMinVsVersionXmlChunk
$vsVersion]
387 set maxPlatformVersion
\
388 [getMaxPlatformVersionXmlChunk
$packageFlavor $vsVersion]
390 set extraFileListAttributes
\
391 [getExtraFileListXmlChunk
$packageFlavor $vsVersion]
392 } elseif
{[string equal
$packageFlavor WinRT81
]} then
{
393 if {$vsVersion ne
"2013"} then
{
395 "unsupported combination, package flavor " $packageFlavor \
396 " is only supported with Visual Studio 2013"]
398 set shortName
$shortNames($packageFlavor,$vsVersion)
399 set displayName
$displayNames($packageFlavor,$vsVersion)
400 set targetPlatformIdentifier Windows
401 set targetPlatformVersion v8.1
402 set minVsVersion
[getMinVsVersionXmlChunk
$vsVersion]
403 set maxPlatformVersion
\
404 [getMaxPlatformVersionXmlChunk
$packageFlavor $vsVersion]
406 set extraFileListAttributes
\
407 [getExtraFileListXmlChunk
$packageFlavor $vsVersion]
408 } elseif
{[string equal
$packageFlavor WP80
]} then
{
409 set shortName
$shortNames($packageFlavor,$vsVersion)
410 set displayName
$displayNames($packageFlavor,$vsVersion)
411 set targetPlatformIdentifier
"Windows Phone"
412 set targetPlatformVersion v8.0
413 set minVsVersion
[getMinVsVersionXmlChunk
$vsVersion]
414 set maxPlatformVersion
\
415 [getMaxPlatformVersionXmlChunk
$packageFlavor $vsVersion]
416 set extraSdkPath
"\\..\\$targetPlatformIdentifier"
417 set extraFileListAttributes
\
418 [getExtraFileListXmlChunk
$packageFlavor $vsVersion]
419 } elseif
{[string equal
$packageFlavor WP81
]} then
{
420 if {$vsVersion ne
"2013"} then
{
422 "unsupported combination, package flavor " $packageFlavor \
423 " is only supported with Visual Studio 2013"]
425 set shortName
$shortNames($packageFlavor,$vsVersion)
426 set displayName
$displayNames($packageFlavor,$vsVersion)
427 set targetPlatformIdentifier WindowsPhoneApp
428 set targetPlatformVersion v8.1
429 set minVsVersion
[getMinVsVersionXmlChunk
$vsVersion]
430 set maxPlatformVersion
\
431 [getMaxPlatformVersionXmlChunk
$packageFlavor $vsVersion]
432 set extraSdkPath
"\\..\\$targetPlatformIdentifier"
433 set extraFileListAttributes
\
434 [getExtraFileListXmlChunk
$packageFlavor $vsVersion]
435 } elseif
{[string equal
$packageFlavor Win32
]} then
{
436 set shortName
$shortNames($packageFlavor,$vsVersion)
437 set displayName
$displayNames($packageFlavor,$vsVersion)
438 set targetPlatformIdentifier Windows
439 set targetPlatformVersion v8.0
440 set minVsVersion
[getMinVsVersionXmlChunk
$vsVersion]
441 set maxPlatformVersion
\
442 [getMaxPlatformVersionXmlChunk
$packageFlavor $vsVersion]
444 set extraFileListAttributes
\
445 [getExtraFileListXmlChunk
$packageFlavor $vsVersion]
448 "unsupported package flavor, must be one of: " \
449 [list WinRT WinRT81 WP80 WP81 Win32
]]
452 ###############################################################################
455 # NOTE: Evaluate the user-specific customizations file, if it exists.
457 set userFile
[file join $path [appendArgs
\
458 $rootName .
$tcl_platform(user
) .tcl
]]
460 if {[file exists
$userFile] && \
461 [file isfile
$userFile]} then
{
465 ###############################################################################
467 set templateFile
[file join $path win sqlite.vsix
]
469 if {![file exists
$templateFile] ||
\
470 ![file isfile
$templateFile]} then
{
471 fail
[appendArgs
"template file \"" $templateFile "\" does not exist"]
474 set currentDirectory
[pwd]
475 set outputFile
[file join $currentDirectory [appendArgs sqlite-
\
476 $packageFlavor -output.vsix
]]
478 if {[file exists
$outputFile]} then
{
479 fail
[appendArgs
"output file \"" $outputFile "\" already exists"]
482 ###############################################################################
485 # NOTE: Make sure that a valid temporary directory exists.
487 set temporaryDirectory
[getTemporaryPath
]
489 if {[string length
$temporaryDirectory] == 0 ||
\
490 ![file exists
$temporaryDirectory] ||
\
491 ![file isdirectory
$temporaryDirectory]} then
{
492 fail
"cannot locate a usable temporary directory"
496 # NOTE: Setup the staging directory to have a unique name inside of the
497 # configured temporary directory.
499 set stagingDirectory
[file normalize
[file join $temporaryDirectory \
500 [appendArgs
$rootName .
[pid]]]]
502 ###############################################################################
505 # NOTE: Configure the external zipping tool. First, see if it has already
506 # been pre-configured. If not, try to query it from the environment.
507 # Finally, fallback on the default of simply "zip", which will then
508 # be assumed to exist somewhere along the PATH.
510 if {![info exists zip
]} then
{
511 if {[info exists env
(ZipTool
)]} then
{
512 set zip
$env(ZipTool
)
514 if {![info exists zip
] ||
![file exists
$zip]} then
{
520 # NOTE: Configure the external unzipping tool. First, see if it has already
521 # been pre-configured. If not, try to query it from the environment.
522 # Finally, fallback on the default of simply "unzip", which will then
523 # be assumed to exist somewhere along the PATH.
525 if {![info exists unzip
]} then
{
526 if {[info exists env
(UnZipTool
)]} then
{
527 set unzip
$env(UnZipTool
)
529 if {![info exists unzip
] ||
![file exists
$unzip]} then
{
534 ###############################################################################
537 # NOTE: Attempt to extract the SQLite version from the "sqlite3.h" header file
538 # in the source directory. This script assumes that the header file has
539 # already been generated by the build process.
541 set pattern
{^
#define\s+SQLITE_VERSION\s+"(.*)"$}
542 set data
[readFile
[file join $sourceDirectory sqlite3.h
]]
544 if {![regexp -line -- $pattern $data dummy version
]} then
{
545 fail
[appendArgs
"cannot locate SQLITE_VERSION value in \"" \
546 [file join $sourceDirectory sqlite3.h
] \"]
549 ###############################################################################
552 # NOTE: Setup all the master file list data. This includes the source file
553 # names, the destination file names, and the file processing flags. The
554 # possible file processing flags are:
556 # "buildNeutral" -- This flag indicates the file location and content do
557 # not depend on the build configuration.
559 # "platformNeutral" -- This flag indicates the file location and content
560 # do not depend on the build platform.
562 # "subst" -- This flag indicates that the file contains dynamic textual
563 # content that needs to be processed using [subst] prior to
564 # packaging the file into the final VSIX package. The primary
565 # use of this flag is to insert the name of the VSIX package,
566 # some package flavor-specific value, or the SQLite version
569 # "noDebug" -- This flag indicates that the file should be skipped when
570 # processing the debug build.
572 # "noRetail" -- This flag indicates that the file should be skipped when
573 # processing the retail build.
575 # "move" -- This flag indicates that the file should be moved from the
576 # source to the destination instead of being copied.
578 # This file metadata may be overridden, either in whole or in part, via
579 # the user-specific customizations file.
581 if {![info exists fileNames
(source)]} then
{
582 set fileNames
(source) [list "" "" \
583 [file join $stagingDirectory DesignTime
<build
> <platform
> sqlite3.props
] \
584 [file join $sourceDirectory sqlite3.h
] \
585 [file join $binaryDirectory <build
> <platform
> sqlite3.lib
] \
586 [file join $binaryDirectory <build
> <platform
> sqlite3.dll
]]
588 if {![info exists no
(symbols
)]} then
{
589 lappend fileNames
(source) \
590 [file join $binaryDirectory <build
> <platform
> sqlite3.pdb
]
594 if {![info exists fileNames
(destination
)]} then
{
595 set fileNames
(destination
) [list \
596 [file join $stagingDirectory extension.vsixmanifest
] \
597 [file join $stagingDirectory SDKManifest.xml
] \
598 [file join $stagingDirectory DesignTime
<build
> <platform
> <name
>.props
] \
599 [file join $stagingDirectory DesignTime
<build
> <platform
> sqlite3.h
] \
600 [file join $stagingDirectory DesignTime
<build
> <platform
> sqlite3.lib
] \
601 [file join $stagingDirectory Redist
<build
> <platform
> sqlite3.dll
]]
603 if {![info exists no
(symbols
)]} then
{
604 lappend fileNames
(destination
) \
605 [file join $stagingDirectory Redist
<build
> <platform
> sqlite3.pdb
]
609 if {![info exists fileNames
(flags
)]} then
{
610 set fileNames
(flags
) [list \
611 [list buildNeutral platformNeutral
subst] \
612 [list buildNeutral platformNeutral
subst] \
613 [list buildNeutral platformNeutral
subst move
] \
614 [list buildNeutral platformNeutral
] \
615 [list] [list] [list noRetail
]]
617 if {![info exists no
(symbols
)]} then
{
618 lappend fileNames
(flags
) [list noRetail
]
622 ###############################################################################
625 # NOTE: Setup the list of builds supported by this script. These may be
626 # overridden via the user-specific customizations file.
628 if {![info exists buildNames
]} then
{
629 set buildNames
[list Debug Retail
]
632 ###############################################################################
635 # NOTE: Setup the list of platforms supported by this script. These may be
636 # overridden via the command line or the user-specific customizations
639 if {![info exists platformNames
] ||
[llength $platformNames] == 0} then
{
640 set platformNames
[list x86 x64 ARM
]
643 ###############################################################################
646 # NOTE: Make sure the staging directory exists, creating it if necessary.
648 file mkdir
$stagingDirectory
651 # NOTE: Build the Tcl command used to extract the template VSIX package to
652 # the staging directory.
654 set extractCommand
[list exec -- $unzip $templateFile -d $stagingDirectory]
657 # NOTE: Extract the template VSIX package to the staging directory.
661 ###############################################################################
664 # NOTE: Process each file in the master file list. There are actually three
665 # parallel lists that contain the source file names, the destination file
666 # names, and the file processing flags. If the "buildNeutral" flag is
667 # present, the file location and content do not depend on the build
668 # configuration and "CommonConfiguration" will be used in place of the
669 # build configuration name. If the "platformNeutral" flag is present,
670 # the file location and content do not depend on the build platform and
671 # "neutral" will be used in place of the build platform name. If the
672 # "subst" flag is present, the file is assumed to be a text file that may
673 # contain Tcl variable, command, and backslash replacements, to be
674 # dynamically replaced during processing using the Tcl [subst] command.
675 # If the "noDebug" flag is present, the file will be skipped when
676 # processing for the debug build. If the "noRetail" flag is present, the
677 # file will be skipped when processing for the retail build. If the
678 # "move" flag is present, the source file will be deleted after it is
679 # copied to the destination file. If the source file name is an empty
680 # string, the destination file name will be assumed to already exist in
681 # the staging directory and will not be copied; however, Tcl variable,
682 # command, and backslash replacements may still be performed on the
683 # destination file prior to the final VSIX package being built if the
684 # "subst" flag is present.
686 foreach sourceFileName
$fileNames(source) \
687 destinationFileName
$fileNames(destination
) \
688 fileFlags
$fileNames(flags
) {
690 # NOTE: Process the file flags into separate boolean variables that may be
691 # used within the loop.
693 set isBuildNeutral
[expr {[lsearch $fileFlags buildNeutral
] != -1}]
694 set isPlatformNeutral
[expr {[lsearch $fileFlags platformNeutral
] != -1}]
695 set isMove
[expr {[lsearch $fileFlags move
] != -1}]
696 set useSubst
[expr {[lsearch $fileFlags subst] != -1}]
699 # NOTE: If the current file is build-neutral, then only one build will
700 # be processed for it, namely "CommonConfiguration"; otherwise, each
701 # supported build will be processed for it individually.
704 [expr {$isBuildNeutral ?
[list CommonConfiguration
] : $buildNames}] {
706 # NOTE: Should the current file be skipped for this build?
708 if {[lsearch $fileFlags no
${buildName
}] != -1} then
{
713 # NOTE: If the current file is platform-neutral, then only one platform
714 # will be processed for it, namely "neutral"; otherwise, each
715 # supported platform will be processed for it individually.
717 foreach platformName
\
718 [expr {$isPlatformNeutral ?
[list neutral
] : $platformNames}] {
720 # NOTE: Use the actual platform name in the destination file name.
722 set newDestinationFileName
[replaceFileNameTokens
$destinationFileName \
723 $shortName $buildName $platformName]
726 # NOTE: Does the source file need to be copied to the destination file?
728 if {[string length
$sourceFileName] > 0} then
{
730 # NOTE: First, make sure the destination directory exists.
732 file mkdir
[file dirname
$newDestinationFileName]
735 # NOTE: Then, copy the source file to the destination file verbatim.
737 set newSourceFileName
[replaceFileNameTokens
$sourceFileName \
738 $shortName $buildName $platformName]
740 file copy
$newSourceFileName $newDestinationFileName
743 # NOTE: If this is a move instead of a copy, delete the source file
747 file delete
$newSourceFileName
752 # NOTE: Does the destination file contain dynamic replacements that must
755 if {$useSubst} then
{
757 # NOTE: Perform any dynamic replacements contained in the destination
758 # file and then re-write it in-place.
760 substFile
$newDestinationFileName
766 ###############################################################################
769 # NOTE: Change the current directory to the staging directory so that the
770 # external archive building tool can pickup the necessary files using
776 # NOTE: Build the Tcl command used to archive the final VSIX package in the
779 set archiveCommand
[list exec -- $zip -r $outputFile *]
782 # NOTE: Build the final VSIX package archive in the output directory.
787 # NOTE: Change back to the previously saved current directory.
792 # NOTE: Cleanup the temporary staging directory.
794 file delete
-force $stagingDirectory
796 ###############################################################################
799 # NOTE: Success, emit the fully qualified path of the generated VSIX file.
801 puts stdout
$outputFile