You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
865 B
23 lines
865 B
2 years ago
|
cmake_minimum_required(VERSION 3.2)
|
||
|
project(TIMING Fortran)
|
||
|
add_executable(secondtst_NONE second_NONE.f secondtst.f)
|
||
|
add_executable(secondtst_EXT_ETIME second_EXT_ETIME.f secondtst.f)
|
||
|
add_executable(secondtst_EXT_ETIME_ second_EXT_ETIME_.f secondtst.f)
|
||
|
add_executable(secondtst_INT_ETIME second_INT_ETIME.f secondtst.f)
|
||
|
add_executable(secondtst_INT_CPU_TIME second_INT_CPU_TIME.f secondtst.f)
|
||
|
add_executable(testieee tstiee.f)
|
||
|
add_executable(testversion ilaver.f LAPACK_version.f)
|
||
|
|
||
|
if( NOT TARGET test_zcomplexabs )
|
||
|
add_executable( test_zcomplexabs test_zcomplexabs.f )
|
||
|
endif()
|
||
|
if( NOT TARGET test_zcomplexdiv )
|
||
|
add_executable( test_zcomplexdiv test_zcomplexdiv.f )
|
||
|
endif()
|
||
|
if( NOT TARGET test_zcomplexmult )
|
||
|
add_executable( test_zcomplexmult test_zcomplexmult.f )
|
||
|
endif()
|
||
|
if( NOT TARGET test_zminMax )
|
||
|
add_executable( test_zminMax test_zminMax.f )
|
||
|
endif()
|