Skip to content
Snippets Groups Projects
CMakeLists.txt 325 B
Newer Older
Xuefeng Ding's avatar
Xuefeng Ding committed
find_package(
  Python
  COMPONENTS Interpreter Development.Module
  REQUIRED)
Xuefeng Ding's avatar
Xuefeng Ding committed
find_package(pybind11 CONFIG REQUIRED)

pybind11_add_module(_hello MODULE _hello_python.cc)
Xuefeng Ding's avatar
Xuefeng Ding committed
target_link_libraries(_hello PRIVATE complexf)
Xuefeng Ding's avatar
Xuefeng Ding committed
install(TARGETS _hello DESTINATION _csrc)
Xuefeng Ding's avatar
Xuefeng Ding committed
set_target_properties(_hello PROPERTIES INSTALL_RPATH "$ORIGIN")