diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-08-10 20:30:13 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-08-10 20:30:30 (GMT) |
commit | 7459eb89d67db4d1245603b3c7cde1140a999474 (patch) | |
tree | d9c9418f3f21fe342c5e492719e0f246e026f41d /Swift/QtUI/SConscript | |
parent | 2cf66be04453bb212948e720d08dca4cfa96b35c (diff) | |
download | swift-7459eb89d67db4d1245603b3c7cde1140a999474.zip swift-7459eb89d67db4d1245603b3c7cde1140a999474.tar.bz2 |
Fix SCons build on windows.
Diffstat (limited to 'Swift/QtUI/SConscript')
-rw-r--r-- | Swift/QtUI/SConscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Swift/QtUI/SConscript b/Swift/QtUI/SConscript index 36cf850..2fd1bc1 100644 --- a/Swift/QtUI/SConscript +++ b/Swift/QtUI/SConscript @@ -75,7 +75,8 @@ sources = [ ] if env["PLATFORM"] == "win32" : - sources += ["../resources/Windows/Swift.rc"] + myenv.RES("../resources/Windows/Swift.rc") + sources += ["../resources/Windows/Swift.res"] if env["PLATFORM"] == "darwin" or env["PLATFORM"] == "win32" : myenv.Program("Swift", sources) |