You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
378 B
18 lines
378 B
2 years ago
|
|
||
|
find_package(Blitz)
|
||
|
|
||
|
if (BLITZ_FOUND)
|
||
|
include_directories(${BLITZ_INCLUDES})
|
||
|
|
||
|
btl_add_bench(btl_blitz btl_blitz.cpp)
|
||
|
if (BUILD_btl_blitz)
|
||
|
target_link_libraries(btl_blitz ${BLITZ_LIBRARIES})
|
||
|
endif ()
|
||
|
|
||
|
btl_add_bench(btl_tiny_blitz btl_tiny_blitz.cpp OFF)
|
||
|
if (BUILD_btl_tiny_blitz)
|
||
|
target_link_libraries(btl_tiny_blitz ${BLITZ_LIBRARIES})
|
||
|
endif ()
|
||
|
|
||
|
endif ()
|