Merge branch 'main' of github.com:Rconybea/xo-pyreflect

This commit is contained in:
Roland Conybeare 2023-10-24 20:37:34 -04:00
commit ccccf26f59
2 changed files with 3 additions and 2 deletions

View file

@ -1,7 +1,8 @@
# xo_pyreflect/src/pyreflect/CMakeLists.txt # xo_pyreflect/src/pyreflect/CMakeLists.txt
set(SELF_LIB pyreflect) set(SELF_LIB xo_pyreflect)
set(SELF_SRCS pyreflect.cpp) set(SELF_SRCS pyreflect.cpp)
xo_pybind11_library(${SELF_LIB} ${PROJECT_NAME}Targets ${SELF_SRCS}) xo_pybind11_library(${SELF_LIB} ${PROJECT_NAME}Targets ${SELF_SRCS})
xo_pybind11_dependency(${SELF_LIB} reflect) xo_pybind11_dependency(${SELF_LIB} reflect)
xo_pybind11_dependency(${SELF_LIB} xo_pyutil)

View file

@ -1,7 +1,7 @@
/* @file pyreflect.cpp */ /* @file pyreflect.cpp */
// note: need pyreflect/ here bc pyreflect.hpp is generated, located in build directory // note: need pyreflect/ here bc pyreflect.hpp is generated, located in build directory
#include "xo/pyreflect/pyreflect.hpp" #include "pyreflect.hpp"
#include "xo/reflect/TypeDescr.hpp" #include "xo/reflect/TypeDescr.hpp"
#include "xo/reflect/TaggedRcptr.hpp" #include "xo/reflect/TaggedRcptr.hpp"
#include "xo/reflect/SelfTagging.hpp" #include "xo/reflect/SelfTagging.hpp"