https://github.com/makaho/kallisto
Raw File
Tip revision: 125e742a868cf35fb4772deb460e16a81a5198c3 authored by Pall Melsted on 28 September 2015, 21:40:02 UTC
#$#$%%$ 1-based offsets
Tip revision: 125e742
CMakeLists.txt
project(Tests)

# include_directories(../Catch/include)
# include_directories(../src)

file(GLOB sources *.cpp)

add_executable(tests ${sources})

find_package( ZLIB REQUIRED )
if ( ZLIB_FOUND )
    include_directories( ${ZLIB_INCLUDE_DIRS} )
    target_link_libraries( tests ${ZLIB_LIBRARIES} )
endif( ZLIB_FOUND )

target_link_libraries(tests kallisto_core)

if(HDF5_FOUND)
    include_directories( ${HDF5_INCLUDE_DIR} )
    target_link_libraries( tests ${HDF5_LIBRARIES} )
else()
    message(FATAL_ERROR "HDF5 not found. Required to output files")
endif()
back to top