diff options
author | Brad Pitcher <bradpitcher@gmail.com> | 2011-12-29 17:24:42 (GMT) |
---|---|---|
committer | Brad Pitcher <bradpitcher@gmail.com> | 2011-12-29 17:24:42 (GMT) |
commit | 8bfb3277e311b0b8c97e9bb77d6eceee97f42729 (patch) | |
tree | 13bb5ebab829288f765d5501fcdca7be62d9334e | |
parent | 211095d661e4bbc52a676f2e4b6d3ecf597bcf8d (diff) |
fixes version() for cross-compiled windows builds
-rw-r--r-- | version.pri | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/version.pri b/version.pri index c94ab82..89a0dc9 100644 --- a/version.pri +++ b/version.pri @@ -1,7 +1,7 @@ # get VERSION from system date isEmpty(VERSION) { - win32-msvc*: { + win32-msvc*:!mingw-cross-env { # # Windows XP date command only has one argument, /t # and it can print the date in various localized formats. |