summaryrefslogtreecommitdiff
path: root/sci-biology/fasttree/files/CMakeLists.txt
blob: c52b90cc7be24b72c2df1046f03d469f0b2af8da (plain)
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
cmake_minimum_required (VERSION 2.8.12)
project(fasttree C)

include(GNUInstallDirs)

option(USE_OPENMP "Use OpenMP to parallelize many of the steps in computing a tree" ON)
option(USE_DOUBLE "Use double precision" OFF)
option(HAS_SSE3 "Use SSE2/SSE3 instructions to speed up some inner loops" ON)

if(USE_OPENMP)
	set( CMAKE_C_FLAGS  "${CMAKE_C_FLAGS} -DOPENMP -fopenmp" )
	set( CMAKE_EXE_LINKER_FLAGS  "${CMAKE_EXE_LINKER_FLAGS} -DOPENMP -fopenmp" )
endif()

if(USE_DOUBLE)
	set( CMAKE_C_FLAGS  "${CMAKE_C_FLAGS} -DUSE_DOUBLE" )
endif()

if(NOT HAS_SSE3)
	set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNO_SSE" )
endif()

add_executable(FastTree FastTree-${VERSION}.c)
add_executable(FastTreeUPGMA FastTreeUPGMA-${VERSION}.c)

target_link_libraries(FastTree m)
target_link_libraries(FastTreeUPGMA m)

install (TARGETS FastTree FastTreeUPGMA DESTINATION ${CMAKE_INSTALL_BINDIR})

install(FILES MOTree.pm CompareTree.pl CompareToBootstrap.pl DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/fasttree)