subrepo: subdir: "xo-pyutil" merged: "dfd5229b" upstream: origin: "git@github.com:Rconybea/xo-pyutil.git" branch: "main" commit: "dfd5229b" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
11 lines
271 B
CMake
11 lines
271 B
CMake
# xo-pyutil/example/ex1/CMakeLists.txt
|
|
|
|
set(SELF_LIB xo_pyutilexample)
|
|
set(SELF_SRCS pyex1.cpp)
|
|
|
|
if (XO_ENABLE_EXAMPLES)
|
|
xo_pybind11_library(${SELF_LIB} ${PROJECT_NAME}Targets ${SELF_SRCS})
|
|
xo_pybind11_dependency(${SELF_LIB} refcnt)
|
|
endif()
|
|
|
|
# end CMakeLists.txt
|