new test cc_cblas (closes #95)
- extended math_libs.cmake for C headers detection - static_linking test included - no int64 in the cc_cblas test - released allocated memory - adaptated for MS Windows (OpenBLAS)
This commit is contained in:
10
test/cc_cblas/src/CMakeLists.txt
Normal file
10
test/cc_cblas/src/CMakeLists.txt
Normal file
@ -0,0 +1,10 @@
|
||||
if(BLAS_FOUND)
|
||||
if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
|
||||
#windows does not find cblas.h of openblas by default
|
||||
include_directories($ENV{PATH})
|
||||
endif()
|
||||
add_executable(example example.c)
|
||||
target_link_libraries(example ${MATH_LIBS})
|
||||
else()
|
||||
message(FATAL_ERROR "BLAS library not found for the test cc_cblas!")
|
||||
endif()
|
Reference in New Issue
Block a user