File: CMakeLists.txt

package info (click to toggle)
openstructure 2.9.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 205,228 kB
  • sloc: cpp: 188,129; python: 35,361; ansic: 34,298; fortran: 3,275; sh: 286; xml: 146; makefile: 29
file content (24 lines) | stat: -rw-r--r-- 507 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
set(OST_MOL_MM_PYMOD_SOURCES
  export_forcefield.cc
  export_settings.cc
  export_simulation.cc
  export_openmm.cc
  export_observers.cc
  export_ff_reader.cc
  export_interaction.cc
  export_buildingblock.cc
  export_block_modifiers.cc
  export_topology.cc
  export_modeller.cc
  wrap_mol_mm.cc
)

set(OST_MOL_MM_PYMOD_MODULES
  __init__.py
  antechamber.py
)

if (NOT ENABLE_STATIC)
  pymod(NAME mol_mm OUTPUT_DIR ost/mol/mm CPP ${OST_MOL_MM_PYMOD_SOURCES}
        PY ${OST_MOL_MM_PYMOD_MODULES})
endif()