File: CMakeLists.txt

package info (click to toggle)
openstructure 2.11.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 206,240 kB
  • sloc: cpp: 188,571; python: 36,686; ansic: 34,298; fortran: 3,275; sh: 312; xml: 146; makefile: 29
file content (20 lines) | stat: -rw-r--r-- 887 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
set(OST_SEQ_ALG_PYMOD_SOURCES
  wrap_seq_alg.cc
)
if (NOT ENABLE_STATIC)
  pymod(NAME seq_alg OUTPUT_DIR ost/seq/alg 
        CPP ${OST_SEQ_ALG_PYMOD_SOURCES}
        PY __init__.py mat.py renumber.py aaindex.py)
endif()

copy_if_different("${CMAKE_CURRENT_SOURCE_DIR}" "${STAGE_DIR}/share/openstructure/aaindex"
                  "aaindex1" "AAINDEX1" "ost_seq_alg_pymod")
install(FILES "aaindex1" DESTINATION "share/openstructure/aaindex/")

copy_if_different("${CMAKE_CURRENT_SOURCE_DIR}" "${STAGE_DIR}/share/openstructure/aaindex"
                  "aaindex2" "AAINDEX2" "ost_seq_alg_pymod")
install(FILES "aaindex2" DESTINATION "share/openstructure/aaindex/")

copy_if_different("${CMAKE_CURRENT_SOURCE_DIR}" "${STAGE_DIR}/share/openstructure/aaindex"
                  "aaindex3" "AAINDEX3" "ost_seq_alg_pymod")
install(FILES "aaindex3" DESTINATION "share/openstructure/aaindex/")