INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR})
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR})

# At some point, we may wish to make this into real "performance
# tests," in the sense that they can pass or fail.  At that point, use
# "CATEGORIES PERFORMANCE" to mark them as such.  For now, we just
# build the executables for manual use, but don't run the tests.  They
# build correctly with or without MPI, but only run them with a single
# MPI process.

#to bind the kernels graph subpackage test, uncomment below
IF (${PACKAGE_NAME}_ENABLE_Experimental)
ADD_SUBDIRECTORIES(
	graph
)
ENDIF()


TRIBITS_ADD_EXECUTABLE(
  blas1
  SOURCES blas1.cpp
  COMM serial mpi
  )

TRIBITS_ADD_EXECUTABLE(
  blas1_MV
  SOURCES blas1_MV.cpp
  COMM serial mpi
  )
