File: CMakeLists.txt

package info (click to toggle)
casacore 3.3.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 49,588 kB
  • sloc: cpp: 456,477; fortran: 16,301; ansic: 7,403; yacc: 4,514; lex: 2,326; sh: 1,700; python: 629; perl: 531; sed: 499; csh: 34; makefile: 31
file content (29 lines) | stat: -rw-r--r-- 570 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
25
26
27
28
29
set (tests
tAipsIOCarray
tAipsIO
tBucketBuffered
tBucketCache
# tBucketFile # https://github.com/casacore/casacore/issues/73
tBucketMapped
# tByteIO # https://github.com/casacore/casacore/issues/73
tByteSink
tByteSinkSource
tFilebufIO
tFileIO
tLargeFileIO
tLockFile
tMFFileIO
tMappedIO
tMMapIO
tMultiFile
tMultiHDF5
tTapeIO
tTypeIO
)

foreach (test ${tests})
    add_executable (${test} ${test}.cc)
    target_link_libraries (${test} casa_casa)
    add_test (${test} ${CMAKE_SOURCE_DIR}/cmake/cmake_assay ./${test})
    add_dependencies(check ${test})
endforeach (test)