]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tools/platforms/msp430/pybsl/cp210xrt/setup.py
Update tos-bsl for win32 python
[tinyos-2.x.git] / tools / platforms / msp430 / pybsl / cp210xrt / setup.py
diff --git a/tools/platforms/msp430/pybsl/cp210xrt/setup.py b/tools/platforms/msp430/pybsl/cp210xrt/setup.py
new file mode 100644 (file)
index 0000000..e92b871
--- /dev/null
@@ -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],
+)