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 (36 lines) | stat: -rw-r--r-- 1,299 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
30
31
32
33
34
35
36

set( Random_tests  testRandom
                   testRandDists )
if( ${CMAKE_SYSTEM_NAME} MATCHES "Windows" )
set( Random_simple_tests testSaveEngineStatus 
                         testInstanceRestore
                         testSaveSharedEngines
                         testStaticStreamSave 
                         testAnonymousEngineRestore 
                         testVectorSave
                         testBug73093 
                         testEngineCopy 
                         testDistCopy 
                         testRanecuSequence )
else()
set( Random_simple_tests testSaveEngineStatus 
                         testInstanceRestore
                         testSaveSharedEngines
                         testStaticStreamSave 
                         testAnonymousEngineRestore
                         testVectorSave
                         testBug58950 
                         testBug73093 
                         testEngineCopy 
                         testDistCopy 
                         testZiggurat
                         testRanecuSequence )
endif()

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

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