File: CMakeLists.txt

package info (click to toggle)
aoflagger 3.4.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,960 kB
  • sloc: cpp: 83,076; python: 10,187; sh: 260; makefile: 178
file content (9 lines) | stat: -rw-r--r-- 388 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
pybind11_add_module(python_aoflagger MODULE pyinterface.cpp pyfunctions.cpp)

set_target_properties(python_aoflagger PROPERTIES SOVERSION 0)
set_target_properties(python_aoflagger PROPERTIES OUTPUT_NAME "aoflagger")
target_link_libraries(
  python_aoflagger
  PUBLIC aoflagger-lib
  PUBLIC ${ALL_LIBRARIES})
install(TARGETS python_aoflagger DESTINATION "/usr/lib/python3/dist-packages/")