mirror of https://github.com/CGAL/cgal
24 lines
642 B
Plaintext
24 lines
642 B
Plaintext
# BLAS (Basic Linear Algebra Subprograms).
|
|
# We search for the BLAS reference implementation
|
|
# (http://www.netlib.org/blas)
|
|
# compiled as a shared library.
|
|
# This configuration *must* be the last try as this library is notably
|
|
# slow. Note that if the "atlas" RPM is installed, the optimized BLAS in
|
|
# Atlas will be loaded at runtime.
|
|
# This configuration has been tested on Fedora with the "blas-devel" RPM (g++).
|
|
|
|
DESCRIPTION = BLAS shared library
|
|
PROVIDES = BLAS
|
|
CXXFLAGS = -DCGAL_USE_F2C
|
|
LDFLAGS =
|
|
LIBS = blas
|
|
REQUIRES =
|
|
INCOMPATIBLE = DOLLAR_WINDOWS_COMPILER
|
|
STDINCLDIRS =
|
|
INCLTHING =
|
|
STDLIBDIRS =
|
|
LIBTHING =
|
|
COMPILETESTFLAGS =
|
|
|
|
# EOF
|