##// END OF EJS Templates
Updated meson build files...
Updated meson build files Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1425:697deb00ef40
r1425:697deb00ef40
Show More
python_providers.cpp
17 lines | 363 B | text/x-c | CppLexer
#include "python_providers.h"
#include <pybind11/embed.h>
namespace py = pybind11;
void PythonProviders::initialize()
{
py::initialize_interpreter(false);
py::print("Hello, World!");
py::print("Hello, World!");
py::print("Hello, World!");
py::print("Hello, World!");
}
PythonProviders::~PythonProviders()
{
py::finalize_interpreter();
}