diff options
Diffstat (limited to 'src/serialisation/wscript')
-rw-r--r-- | src/serialisation/wscript | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/serialisation/wscript b/src/serialisation/wscript new file mode 100644 index 00000000..c3e98b81 --- /dev/null +++ b/src/serialisation/wscript @@ -0,0 +1,16 @@ +#!/usr/bin/env python +import Params + +def build(bld): + obj = bld.create_obj('cpp', 'shlib') + obj.source = ''' + Parser.cpp + Serialiser.cpp + serialisation.cpp + ''' + obj.includes = ['..', '../../common', '../..'] + obj.name = 'libingen_serialisation' + obj.target = 'ingen_serialisation' + obj.uselib = 'GLIBMM SLV2 RAUL REDLANDMM' + obj.vnum = '0.0.0' + |