X-Git-Url: https://oss.titaniummirror.com/gitweb/?p=tinyos-2.x.git;a=blobdiff_plain;f=tools%2Fplatforms%2Fmsp430%2Fpybsl%2Fcp210xrt%2Fsetup.py;fp=tools%2Fplatforms%2Fmsp430%2Fpybsl%2Fcp210xrt%2Fsetup.py;h=e92b871243afa55417fe6e662b68b4b684237785;hp=0000000000000000000000000000000000000000;hb=add98f2f5788d2ee9f8104881fd0a2bc97f2c209;hpb=4b943ec81ebdc1582de77b529dbec1419e611af5 diff --git a/tools/platforms/msp430/pybsl/cp210xrt/setup.py b/tools/platforms/msp430/pybsl/cp210xrt/setup.py new file mode 100644 index 00000000..e92b8712 --- /dev/null +++ b/tools/platforms/msp430/pybsl/cp210xrt/setup.py @@ -0,0 +1,22 @@ +# This is an example of a distutils 'setup' script for the example_nt +# sample. This provides a simpler way of building your extension +# and means you can avoid keeping MSVC solution files etc in source-control. +# It also means it should magically build with all compilers supported by +# python. + +# USAGE: you probably want 'setup.py install' - but execute 'setup.py --help' +# for all the details. + +# NOTE: This is *not* a sample for distutils - it is just the smallest +# script that can build this. See distutils docs for more info. + +from distutils.core import setup, Extension + +cp210xrt_mod = Extension('cp210xrt', sources = ['cp210xrt.cpp'], \ + include_dirs = ['.'], library_dirs = ['.'], libraries = ['CP210xRuntime']) + +setup(name = "cp210xrt", + version = "0.1", + description = "CP210x runtime access", + ext_modules = [cp210xrt_mod], +)