Changing app name to ChronoChat
diff --git a/wscript b/wscript
index f7bdf1c..1554e22 100644
--- a/wscript
+++ b/wscript
@@ -1,6 +1,6 @@
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
-VERSION='0.1'
-APPNAME='QT-Test'
+VERSION='1.0'
+APPNAME='ChronoChat'
from waflib import Configure, Utils
@@ -42,7 +42,7 @@
def build (bld):
qt = bld (
- target = "Contacts",
+ target = "ChronoChat",
features = "qt4 cxx cxxprogram",
defines = "WAF",
source = bld.path.ant_glob(['src/*.cpp', 'src/*.ui', 'logging.cc', 'src/*.proto']),
@@ -71,7 +71,7 @@
<key>CFBundleGetInfoString</key>
<string>Created by Waf</string>
<key>CFBundleIdentifier</key>
- <string>edu.ucla.cs.irl.Contacts</string>
+ <string>edu.ucla.cs.irl.ChronoChat</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>NOTE</key>
@@ -87,8 +87,8 @@
</dict>
</plist>'''
- qt.mac_app = "Contacts.app"
- qt.mac_plist = app_plist % "Contacts"
+ qt.mac_app = "ChronoChat.app"
+ qt.mac_plist = app_plist % "ChronoChat"
qt.mac_resources = 'demo.icns'