mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-21 20:36:09 +00:00
23115d7b1c
Refactor CMakeLists.txt for bindings Fix for CUTTER_ENABLE_JUPYTER=OFF
14 lines
179 B
C
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
|