xo-umbrella2/xo-pyprocess/src/pyprocess/pyprocess.hpp.in
Roland Conybeare 5affc97c96 git subrepo clone (merge) git@github.com:Rconybea/xo-pyprocess.git xo-pyprocess
subrepo:
  subdir:   "xo-pyprocess"
  merged:   "231a01db"
upstream:
  origin:   "git@github.com:Rconybea/xo-pyprocess.git"
  branch:   "main"
  commit:   "231a01db"
git-subrepo:
  version:  "0.4.9"
  origin:   "???"
  commit:   "???"
2026-06-06 22:35:22 -04:00

25 lines
599 B
C++

/* @file pyprocess.hpp
*
* automatically generated from src/pyprocess/pyprocess.hpp.in
* see src/pyprocess/CMakeLists.txt
*/
/* python requires module name = library name
* example:
* PYBIND11_MODULE(PYPROCESS_MODULE_NAME(), m) { ... }
*/
#define PYPROCESS_MODULE_NAME() @SELF_LIB@
/* example:
* py::module_::import(PYPROCESS_MODULE_NAME_STR)
*/
#define PYPROCESS_MODULE_NAME_STR "@SELF_LIB@"
/* example:
* PYPROCESS_IMPORT_MODULE()
* replaces
* py::module_::import("pyprocess")
*/
#define PYPROCESS_IMPORT_MODULE() py::module_::import("@SELF_LIB@")
/* end pyprocess.hpp */