xo-pyjit: initial commit

This commit is contained in:
Roland Conybeare 2024-06-14 15:00:57 -04:00
commit 3cc8e73ab4
8 changed files with 171 additions and 0 deletions

9
src/pyjit/CMakeLists.txt Normal file
View file

@ -0,0 +1,9 @@
# xo-pyjit/src/pyjit/CMakeLists.txt
set(SELF_LIB xo_pyjit)
set(SELF_SRCS pyjit.cpp)
xo_pybind11_library(${SELF_LIB} ${PROJECT_NAME}Targets ${SELF_SRCS})
xo_pybind11_dependency(${SELF_LIB} xo_jit)
xo_pybind11_dependency(${SELF_LIB} xo_pyexpression)
xo_dependency(${SELF_LIB} refcnt)