Explicitly group conditions
For some reason I was unable to produce correct criteria without inserting explicit parentheses. I don't know why that is, but better safe than sorry.
This commit is contained in:
parent
a154887a2b
commit
1fca44fb03
@ -71,11 +71,11 @@ macro (sources_hook)
|
||||
)
|
||||
endif (NOT SuiteSparse_FOUND)
|
||||
|
||||
if (NOT MPI_FOUND OR NOT DUNE_ISTL_FOUND)
|
||||
if ((NOT MPI_FOUND) OR (NOT DUNE_ISTL_FOUND))
|
||||
list (REMOVE_ITEM tests_SOURCES
|
||||
${PROJECT_SOURCE_DIR}/tests/test_parallel_linearsolver.cpp
|
||||
)
|
||||
endif (NOT MPI_FOUND OR NOT DUNE_ISTL_FOUND)
|
||||
endif ((NOT MPI_FOUND) OR (NOT DUNE_ISTL_FOUND))
|
||||
|
||||
# we are not supposed to include the TinyXML test prog. regardless
|
||||
list (REMOVE_ITEM opm-core_SOURCES
|
||||
|
Loading…
Reference in New Issue
Block a user