Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | More build tweaks for Windows |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
40bb7e074c883baca29efeff73aea33f |
User & Date: | kevin 2020-01-02 12:50:04 |
Context
2020-01-03
| ||
13:45 | Final tweaks for Windows build check-in: e90f9da4e1 user: kevin tags: trunk | |
2020-01-02
| ||
12:50 | More build tweaks for Windows check-in: 40bb7e074c user: kevin tags: trunk | |
03:26 | More tweaks check-in: db3defd2be user: kevin tags: trunk | |
Changes
Changes to build.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | SET COPYCMD=/Y if exist TextSweep_Setup.exe ( del TextSweep_Setup.exe ) if exist build\ ( rmdir build\ ) mkdir build\ mkdir build\textsweep\ call xcopy C:\Users\Kevin\AppData\Local\Apps\Tcl86\lib build\lib /s /i /y call xcopy C:\Users\Kevin\AppData\Local\Apps\Tcl86\bin build\bin /s /i /y call xcopy scriptlibs build\lib /s /i /y call xcopy winlibs build\lib /s /i /y call xcopy uninstall.bat build\ call xcopy textsweep.ico build\ call xcopy C:\Users\Kevin\Desktop\pathed.exe build\ call xcopy C:\Users\Kevin\Desktop\DDECmd.exe build\bin\ call xcopy textsweep-cli.bat build\bin\ call xcopy textsweep.tcl build\bin\ | > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | SET COPYCMD=/Y if exist TextSweep_Setup.exe ( del TextSweep_Setup.exe ) if exist TextSweep_Setup_unsigned.exe ( del TextSweep_Setup_unsigned.exe ) if exist build\ ( rmdir build\ ) mkdir build\ mkdir build\textsweep\ call xcopy C:\Users\Kevin\AppData\Local\Apps\Tcl86\lib build\lib /s /i /y call xcopy C:\Users\Kevin\AppData\Local\Apps\Tcl86\bin build\bin /s /i /y call xcopy scriptlibs build\lib /s /i /y call xcopy winlibs build\lib /s /i /y call xcopy uninstall.bat build\ call xcopy textsweep.ico build\ call xcopy C:\Users\Kevin\Desktop\pathed.exe build\ call xcopy C:\Users\Kevin\Desktop\DDECmd.exe build\bin\ call xcopy textsweep-cli.bat build\bin\ call xcopy textsweep.tcl build\bin\ |