Making sure code compiles with updated libChronoSync dependency
diff --git a/wscript b/wscript
index 14f6107..ab251e7 100644
--- a/wscript
+++ b/wscript
@@ -5,7 +5,8 @@
from waflib import Build, Logs, Utils, Task, TaskGen, Configure
def options(opt):
- opt.add_option('--debug',action='store_true',default=False,dest='debug',help='''debugging mode''')
+ grp = opt.add_option_group ("ChronoChat Options")
+ grp.add_option('--debug',action='store_true',default=False,dest='debug',help='''debugging mode''')
# opt.add_option('--test', action='store_true',default=False,dest='_test',help='''build unit tests''')
# opt.add_option('--log4cxx', action='store_true',default=False,dest='log4cxx',help='''Compile with log4cxx logging support''')
@@ -30,7 +31,7 @@
else:
conf.add_supported_cxxflags (cxxflags = ['-O3', '-g'])
- conf.check_cfg (package='libsync', args=['--cflags', '--libs'], uselib_store='SYNC', mandatory=True)
+ conf.check_cfg (package='libChronoSync', args=['--cflags', '--libs'], uselib_store='SYNC', mandatory=True)
conf.define ("CHRONOCHAT_VERSION", VERSION)