##// 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
Ported MockPlugin to new Variable2 impl and added dummy python plugin...
r1423 #include "python_providers.h"
#include <pybind11/embed.h>
namespace py = pybind11;
void PythonProviders::initialize()
{
Updated meson build files...
r1425 py::initialize_interpreter(false);
Ported MockPlugin to new Variable2 impl and added dummy python plugin...
r1423 py::print("Hello, World!");
Updated meson build files...
r1425 py::print("Hello, World!");
py::print("Hello, World!");
py::print("Hello, World!");
}
PythonProviders::~PythonProviders()
{
py::finalize_interpreter();
Ported MockPlugin to new Variable2 impl and added dummy python plugin...
r1423 }