initialization
diff --git a/wscript b/wscript
new file mode 100644
index 0000000..80f3db1
--- /dev/null
+++ b/wscript
@@ -0,0 +1,19 @@
+# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
+VERSION='0.1'
+APPNAME='QT-Test'
+
+def options(opt):
+ opt.load('compiler_c compiler_cxx boost protoc qt4')
+
+def configure(conf):
+ conf.load("compiler_c compiler_cxx")
+
+# conf.add_supported_cxxflags (cxxflags = ['-O3', '-g'])
+
+ conf.load('protoc')
+
+ conf.load('qt4')
+
+ conf.load('boost')
+
+ conf.check_boost(lib='system random thread')
\ No newline at end of file