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 (33 lines) | stat: -rw-r--r-- 773 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
set(OST_IO_UNIT_TESTS
  test_io_pdb.py
  test_io_mmcif.py
  test_io_omf.py
  test_io_sdf.py
  test_clustal.cc
  test_io_pdb.cc
  test_io_crd.cc
  test_io_dcd.cc
  test_io_sdf.cc
  test_io_sdf_v3000.cc
  test_io_sequence_profile.cc
  test_pir.cc
  test_iomanager.cc
  tests.cc
  test_star_parser.cc
  test_mmcif_reader.cc
  test_mmcif_writer.cc
  test_mmcif_info.cc
  test_io_img.cc
  test_exceptions.cc
)

ost_unittest(MODULE io
             SOURCES "${OST_IO_UNIT_TESTS}"
             LINK ost_mol ost_seq)

if(NOT ENABLE_STATIC)
  add_executable(test_mae_standalone test_mae_standalone.cc)
  target_link_libraries(test_mae_standalone ost_mol)
  target_link_libraries(test_mae_standalone ost_io)
  target_link_libraries(test_mae_standalone ${Boost_REGEX_LIBRARY})
endif()