commit | f04d451df38d5afea7f5cfc6af57f8f73d271907 | [log] [tgz] |
---|---|---|
author | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Tue Feb 14 18:42:47 2012 -0800 |
committer | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Tue Feb 14 18:42:47 2012 -0800 |
tree | 23f2f297eeb996d95086bdbabf9ddd4f1fc58724 | |
parent | f2e0da1fe7bb01a7e589fc78886f93ca3cb0177f [diff] [blame] |
Adding a simple tutorial example
diff --git a/examples/wscript b/examples/wscript new file mode 100644 index 0000000..def6b0a --- /dev/null +++ b/examples/wscript
@@ -0,0 +1,6 @@ +# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- + +def build(bld): + obj = bld.create_ns3_program('ccnx-simple', ['NDNabstraction']) + obj.source = 'ccnx-simple.cc' +