mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-03-07 18:27:40 +08:00
11 lines
334 B
CMake
11 lines
334 B
CMake
|
|
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)
|
|
if(BUILD_btl_blaze)
|
|
target_link_libraries(btl_blaze ${Boost_LIBRARIES} ${Boost_system_LIBRARY} /opt/local/lib/libboost_system-mt.a )
|
|
endif()
|
|
endif ()
|