aboutsummaryrefslogtreecommitdiffstats
path: root/common/pybindings.cc
blob: 43e474e17b6c426fc17f34b9272cd82c1a8a908c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "design.h"
#include "chip.h"

#include <boost/python.hpp>
#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
#include <boost/python/suite/indexing/map_indexing_suite.hpp>
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) {

}