add test for accelerate framework

This commit is contained in:
Radovan Bast
2015-09-18 10:44:39 +02:00
parent d4596c6f95
commit c5057f8aee
8 changed files with 146 additions and 18 deletions

View File

@ -0,0 +1,7 @@
if(ACCELERATE_FOUND)
include_directories(${ACCELERATE_INCLUDE_DIR})
add_executable(example example.cpp)
target_link_libraries(example ${ACCELERATE_LIBRARIES})
else()
message(FATAL_ERROR "ACCELERATE library not found")
endif()