Skip to content
Snippets Groups Projects
Commit c9cc3184 authored by Markus Blatt's avatar Markus Blatt
Browse files

- Got rid off debugging output.

- Removed dependency on cmake version 2.8.9

[[Imported from SVN: r1707]]
parent 23bb9894
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
project("dune-istl" C CXX)
# general stuff
cmake_minimum_required(VERSION 2.8.8)
cmake_minimum_required(VERSION 2.8)
# make sure our own modules are found
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/modules")
......
......@@ -27,7 +27,7 @@ endfunction(add_dune_superlu_flags)
# look for BLAS
find_package(BLAS QUIET REQUIRED)
if(NOT BLAS_FOUND)
message("SuperLU requires BLAS which was not found, skipping the test.")
message(WARNING "SuperLU requires BLAS which was not found, skipping the test.")
return()
endif(NOT BLAS_FOUND)
......
......@@ -26,10 +26,6 @@ set_target_properties(pamg_comm_repart_test PROPERTIES COMPILE_FLAGS "-DAMG_REPA
add_executable(pamgtest "parallelamgtest.cc")
add_executable(transfertest "transfertest.cc")
message("MPITESTS=${MPITESTS}")
message("ALLTESTS=${ALLTESTS}")
foreach(_exe ${ALLTESTS})
target_link_libraries(${_exe} "dunecommon")
add_test(${_exe} ${_exe})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment