CMakeLists.txt 363 B

1234567891011
  1. find_package(PythonExtensions REQUIRED)
  2. find_package(Cython REQUIRED)
  3. add_cython_target(pytangle pytangle.pyx C)
  4. add_library(pytangle MODULE ${pytangle})
  5. target_link_libraries(pytangle tangle)
  6. target_include_directories(pytangle PUBLIC "${CMAKE_SOURCE_DIR}/tangle/include")
  7. python_extension_module(pytangle)
  8. install(TARGETS pytangle LIBRARY DESTINATION python)