Sha256: 035a0805d78b49ec9b9a39fe87a253fd83dbc50ae957e61e5f33b769652e6a4c

Contents?: true

Size: 911 Bytes

Versions: 4

Compression:

Stored size: 911 Bytes

Contents

#
# This is a CMake makefile.  You can find the cmake utility and
# information about it at http://www.cmake.org
#

cmake_minimum_required(VERSION 2.6)

# This variable contains a list of all the tests we are building
# into the regression test suite.
set (tests
   blas_bindings_gemm.cpp
   blas_bindings_gemv.cpp
   blas_bindings_ger.cpp
   blas_bindings_dot.cpp
   blas_bindings_scal_axpy.cpp
   vector.cpp
   )

# create a variable called target_name and set it to the string "test"
set (target_name test)

PROJECT(${target_name})

# add all the cpp files we want to compile to this list.  This tells
# cmake that they are part of our target (which is the executable named test)
ADD_EXECUTABLE(${target_name} ../main.cpp ../tester.cpp ${tests})

ADD_DEFINITIONS(-DDLIB_TEST_BLAS_BINDINGS)

# Tell cmake to link our target executable to dlib
include(../../cmake)
TARGET_LINK_LIBRARIES(${target_name} dlib )

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dlib-1.0.3 ext/dlib-18.13/dlib/test/blas_bindings/CMakeLists.txt
dlib-1.0.2 ext/dlib-18.13/dlib/test/blas_bindings/CMakeLists.txt
dlib-1.0.1 ext/dlib-18.13/dlib/test/blas_bindings/CMakeLists.txt
dlib-1.0.0 ext/dlib-18.13/dlib/test/blas_bindings/CMakeLists.txt