File: CMakeLists.txt

package info (click to toggle)
clhep 2.1.4.1%2Bdfsg-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 10,012 kB
  • sloc: cpp: 50,094; sh: 6,694; makefile: 2,694; perl: 28
file content (25 lines) | stat: -rw-r--r-- 719 bytes parent folder | download | duplicates (5)
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

# add -D needed by testInversion
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DINSTALLATION_CHECK")

set( Matrix_tests testMatrix 
                  testInversion
	          testBug6176 )

# leak test (bug 7328) does not work on MacOSX or DOS
if( ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" )
  set( Matrix_simple_tests testBug6181 )
elseif( ${CMAKE_SYSTEM_NAME} MATCHES "Windows" )
  set( Matrix_simple_tests testBug6181 )
else()
  set( Matrix_simple_tests testBug6181
                           testBug7328 )
endif()

foreach ( test ${Matrix_tests} )
  clhep_test( ${test} )
endforeach ( test ${Matrix_tests} )

foreach ( test ${Matrix_simple_tests} )
  clhep_test( ${test} SIMPLE )
endforeach ( test ${Matrix_simple_tests} )