Files
eigen/bench/btl/libs/blaze/CMakeLists.txt

11 lines
334 B
CMake
Raw Normal View History

2014-03-31 10:59:55 +02:00
find_package(BLAZE)
find_package(Boost)
if (BLAZE_FOUND AND Boost_FOUND)
include_directories(${BLAZE_INCLUDE_DIR} ${Boost_INCLUDE_DIRS})
btl_add_bench(btl_blaze main.cpp)
2014-04-17 21:01:45 +02:00
if(BUILD_btl_blaze)
target_link_libraries(btl_blaze ${Boost_LIBRARIES} ${Boost_system_LIBRARY} /opt/local/lib/libboost_system-mt.a )
endif()
endif ()