Skip to content
Snippets Groups Projects
CMakeLists.txt 326 B
Newer Older
Xuefeng Ding's avatar
Xuefeng Ding committed
find_package(Python COMPONENTS Interpreter Development.Module REQUIRED)
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)
set_target_properties(_hello PROPERTIES
    INSTALL_RPATH "$ORIGIN/.."
Xuefeng Ding's avatar
Xuefeng Ding committed
)