⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 postbuild.bat

📁 This ZIP archive includes the sources (and executable) for the FileTest utility, written by Ladisla
💻 BAT
字号:
@echo off
rem Batch file for post-build processing
rem
rem Parameters:
rem PostBuild %1 %2
rem
rem   %1 - Platform name (Win32 or x64)
rem   %2 - Configuration name (Debug or Release)
rem
rem

set APP_NAME=FileTest

:IncBuildNum
if not "x%2" == "xRelease" goto exit
mkbuildnum.exe %APP_NAME%.rc

:CopyToTools
if "x%1" == "xx64" goto Target64

:Target32
if exist C:\Tools32 copy .\bin\%1\%2\%APP_NAME%.exe C:\Tools32
if exist D:\Tools32 copy .\bin\%1\%2\%APP_NAME%.exe D:\Tools32
goto exit

:Target64
if exist C:\Tools64 copy .\bin\%1\%2\%APP_NAME%.exe C:\Tools64
if exist D:\Tools64 copy .\bin\%1\%2\%APP_NAME%.exe D:\Tools64

:exit

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -