From d62f7abd9561f1ac5085eadb21030211e7cabf4f Mon Sep 17 00:00:00 2001 From: David Shah Date: Fri, 1 Jun 2018 13:57:06 +0200 Subject: Creating an empty Python module Signed-off-by: David Shah --- common/pybindings.cc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 common/pybindings.cc (limited to 'common') diff --git a/common/pybindings.cc b/common/pybindings.cc new file mode 100644 index 00000000..43e474e1 --- /dev/null +++ b/common/pybindings.cc @@ -0,0 +1,15 @@ +#include "design.h" +#include "chip.h" + +#include +#include +#include +using namespace boost::python; + +#define PASTER(x,y) x ## _ ## y +#define EVALUATOR(x,y) PASTER(x,y) +#define MODULE_NAME EVALUATOR(nextpnrpy, ARCHNAME) + +BOOST_PYTHON_MODULE (MODULE_NAME) { + +} -- cgit v1.2.3