diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-05-30 20:17:42 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-05-30 20:17:42 (GMT) |
commit | 0ee5bb4d983e59b0d1d983077613804a12c62109 (patch) | |
tree | 07a885cb890d1b5002eca6c5aca2769cefc9d946 /Swift/Controllers/SConscript | |
parent | b58d7bf2cbc310b097760e6266659f70d2fd5a0a (diff) | |
download | swift-0ee5bb4d983e59b0d1d983077613804a12c62109.zip swift-0ee5bb4d983e59b0d1d983077613804a12c62109.tar.bz2 |
Use the same version number in iq:version and about window.
Resolves: #428
Diffstat (limited to 'Swift/Controllers/SConscript')
-rw-r--r-- | Swift/Controllers/SConscript | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Swift/Controllers/SConscript b/Swift/Controllers/SConscript index eb63bed..ad03a5a 100644 --- a/Swift/Controllers/SConscript +++ b/Swift/Controllers/SConscript @@ -1,4 +1,5 @@ Import("env") +import Version ################################################################################ # Flags @@ -10,12 +11,14 @@ if env["SCONS_STAGE"] == "flags" : "LIBS": ["SwiftControllers"] } + ################################################################################ # Build ################################################################################ if env["SCONS_STAGE"] == "build" : myenv = env.Clone() + myenv.BuildVersion("BuildVersion.h", project = "swift") myenv.MergeFlags(env["BOOST_FLAGS"]) myenv.StaticLibrary("SwiftControllers", [ "Chat/ChatController.cpp", |