diff options
author | Marius Kintel <marius@kintel.net> | 2011-01-21 18:26:47 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-01-21 18:26:47 (GMT) |
commit | bdcac3910cb333c4ebef6949d5fb6813a48ac1c0 (patch) | |
tree | f101c67b002465c03b081f79f8e55202cf2c6714 | |
parent | 91c640fb5e15383822716ddd8ef9b1650d07d2c1 (diff) | |
parent | 9557e465cdf4c75b6c85deb6a26e03814323be53 (diff) |
Merge branch 'master' of github.com:openscad/openscad
-rw-r--r-- | openscad.pro | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/openscad.pro b/openscad.pro index 42a5d22..0e94eb0 100644 --- a/openscad.pro +++ b/openscad.pro @@ -1,4 +1,9 @@ -isEmpty(VERSION) VERSION = $$system(date "+%Y.%m.%d") +win32 { + isEmpty(VERSION) VERSION = $$system(date /t) +} else { + isEmpty(VERSION) VERSION = $$system(date "+%Y.%m.%d") +} + DEFINES += OPENSCAD_VERSION=$$VERSION TEMPLATE = app RESOURCES = openscad.qrc |