WIP: [ParameterTreeParser] add ParameterTreeParser for python scripts
Compare changes
Files
11
cmake/modules/AddPythonFlags.cmake
0 → 100644
+ 36
− 0
This MR adds two static methods to ParameterTreeParser
that can be used to read a python dictionary into a ParameterTree.
readPythonDict
:
pybind11::dict
readPythonDict is called for the sub-ParameterTree of the corresponding keyreadPythonFile
:
eval_file
method__dict__
, which is the global scope) is casted to a pybind11:dict
and passed to readPythonDict
For readPythonDict
the include files and libraries of python must be available. I added a CMake variable HAVE_PYTHON3_DEV
and an entry in the config.h
for that. Futhermore I added AddPythonFlags.cmake
for the management of the linking and includes.
For readPythonFile
the embed functionality of python must be available this is checked with the CMake variable Python3_Development.Embed_FOUND
and passed to the c++ side with HAVE_PYTHON3_EMBED
.
Furthermore a type_caster
is added for conversion of a python dict into a ParameterTree. That makes python bindings that take a ParameterTree as a function argument callable from the python-side with a dict.