diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-08-22 18:57:05 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-08-22 18:57:05 +0100 |
| commit | 0251d3f2986bf70d4721b7127ca6ddcc9da3b256 (patch) | |
| tree | 5b8bee96ae9bd53c7e78c264cdf08993f3a28e41 /examples/wscript | |
| parent | 422c8a63d2368a2e63aee4c391207e3332d1d4c7 (diff) | |
Add basic example; tweak bits and pieces.
Diffstat (limited to 'examples/wscript')
| -rw-r--r-- | examples/wscript | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/wscript b/examples/wscript new file mode 100644 index 00000000..b6b28653 --- /dev/null +++ b/examples/wscript @@ -0,0 +1,7 @@ +def build(bld): + obj = bld(features = 'cxx cxxprogram') + obj.name = 'examples' + obj.use = 'libdcp' + obj.source = 'make_dcp.cc' + obj.target = 'make_dcp' + obj.install_path = '' |
