1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00

add md5.exe

This commit is contained in:
tianduanrui 2017-12-24 09:59:59 +08:00
parent 2b395468fb
commit c7f8824911
2 changed files with 12 additions and 0 deletions

BIN
extra/md5.exe Normal file

Binary file not shown.

View File

@ -158,6 +158,18 @@ defineReplace(get_lrelease_language){
return ($${command})
}
defineReplace(get_md5_command) {
filename = $$1
isEmpty(1): error("get_md5_command(filename) requires one argument")
command =
win32 {
command = md5 -n $${filename}
} else {
command = echo 2> $${filename}
}
return ($$command)
}
################################################
##custom functions
################################################