##// END OF EJS Templates
Add the cmake to permits to do cpack to get a standalone installer on Windows....
Add the cmake to permits to do cpack to get a standalone installer on Windows. This one use NSIS and windeployqt. To get the installer please do : cmake, make, cmake cpack. The second cmake is necessary because windeployqt needs the exe file that exists only at the end of the make process

File last commit:

r2:451739a45362
r51:a93b95151285
Show More
DUMP.tcl
13 lines | 326 B | application/x-tcl | TclLexer
#!/usr/bin/tclsh
foreach f [getSourceFileNames] {
puts "Tokens in file ${f}:"
foreach t [getTokens $f 1 0 -1 -1 {}] {
set value [lindex $t 0]
set line [lindex $t 1]
set column [lindex $t 2]
set name [lindex $t 3]
puts "${line}/${column}\t${name}\t${value}"
}
puts ""
}