cutter/src/common/PythonAPI.h
Florian Märkl 23115d7b1c Generate Bindings for CutterCore in CMake
Refactor CMakeLists.txt for bindings

Fix for CUTTER_ENABLE_JUPYTER=OFF
2019-02-21 22:57:26 +01:00

14 lines
179 B
C

#ifndef PYTHONAPI_H
#define PYTHONAPI_H
#ifdef CUTTER_ENABLE_PYTHON
#include <Python.h>
PyObject *PyInit_api();
PyObject *PyInit_api_internal();
#endif
#endif // PYTHONAPI_H