File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ option( BUILD_PERFORMANCE "Copy the performance scripts that can measure and gra
2323option ( BUILD_SAMPLE "Build the sample programs" OFF )
2424option ( BUILD_CLIENT "Build a command line clBLAS client program with a variety of configurable parameters (dependency on Boost)" OFF )
2525option ( BUILD_KTEST "A command line tool for testing single clBLAS kernel" ON )
26+ option ( BUILD_SHARED_LIBS "Build shared libraries" ON )
2627
2728# By default test-correctness is linked and tested against ACML library.
2829# However, test-correctness can instead use NETLIB as a reference library
Original file line number Diff line number Diff line change @@ -307,7 +307,7 @@ if( CMAKE_COMPILER_IS_GNUCC )
307307 DESTINATION lib${SUFFIX_LIB} /pkgconfig )
308308endif ( )
309309
310- add_library (clBLAS SHARED ${CLBLAS_SOURCES} ${GLOBAL_HEADERS} ${SRC_BLAS_HEADERS} ${SRC_BLAS_GENS_HEADERS} )
310+ add_library (clBLAS ${CLBLAS_SOURCES} ${GLOBAL_HEADERS} ${SRC_BLAS_HEADERS} ${SRC_BLAS_GENS_HEADERS} )
311311add_dependencies (clBLAS GENERATE_CLT)
312312set_target_properties (clBLAS PROPERTIES VERSION ${clBLAS_VERSION} )
313313set_target_properties (clBLAS PROPERTIES SOVERSION ${clBLAS_SOVERSION} )
You can’t perform that action at this time.
0 commit comments