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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
add_executable(hmctest
hmctest/hmctest.cpp)
#add_executable(hmctest5
# hmctest/hmctest5.cpp)
#add_executable(hmcGaptest
# hmctest/hmcGapTest.cpp)
#add_executable(tinytest
# tinytest/tinytest.cpp)
#add_executable(hmctestMedium
# hmctest/hmctestMedium.cpp)
#add_executable(genomictest
# genomictest/genomictest.cpp
# genomictest/linalg.cpp
# genomictest/linalg.h
# )
#add_executable(synthetictest
# synthetictest/synthetictest.cpp
# synthetictest/linalg.cpp
# synthetictest/linalg.h
# )
#add_executable(complextest
# complextest/complextest.cpp)
target_link_libraries(hmctest
hmsbeagle
# hmsbeagle-cpu-sse
hmsbeagle-cpu
${CMAKE_DL_LIBS})
#target_link_libraries(synthetictest
# hmsbeagle
# hmsbeagle-cpu-sse
# hmsbeagle-cpu
# ${CMAKE_DL_LIBS})
if(BUILD_SSE)
target_link_libraries(hmctest
hmsbeagle-cpu-sse)
#
# target_link_libraries(synthetictest
# hmsbeagle-cpu-sse)
endif(BUILD_SSE)
add_test(hmctest hmctest)
#target_link_libraries(hmctest5 hmsbeagle ${CMAKE_DL_LIBS})
#target_link_libraries(hmcGaptest hmsbeagle ${CMAKE_DL_LIBS})
#target_link_libraries(genomictest beagle_lib)
#target_link_libraries(tinytest hmsbeagle)
|