From 1f932bb88cb60adf82987364526be1a9f5ed46c4 Mon Sep 17 00:00:00 2001 From: David Wells Date: Thu, 14 Jul 2016 15:04:35 -0400 Subject: [PATCH] Remove spaces before '-D's. My version of CMake doesn't like the extra spaces. --- doc/external-libs/trilinos.html | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/doc/external-libs/trilinos.html b/doc/external-libs/trilinos.html index 5f4d7fbb96..6c872950a1 100644 --- a/doc/external-libs/trilinos.html +++ b/doc/external-libs/trilinos.html @@ -126,10 +126,10 @@ following flags to the call above:
 
-	-D BLAS_LIBRARY_NAMES:STRING=goto \
-	-D BLAS_LIBRARY_DIRS:STRING=/apps/GotoBLAS/lib64 \
-	-D LAPACK_LIBRARY_NAMES:STRING=lapack \
-	-D LAPACK_LIBRARY_DIRS:STRING=/apps/lapack-3.2.1/lib64
+	-DBLAS_LIBRARY_NAMES:STRING=goto \
+	-DBLAS_LIBRARY_DIRS:STRING=/apps/GotoBLAS/lib64 \
+	-DLAPACK_LIBRARY_NAMES:STRING=lapack \
+	-DLAPACK_LIBRARY_DIRS:STRING=/apps/lapack-3.2.1/lib64
       

@@ -149,26 +149,26 @@ solvers:
 
-        -D TPL_ENABLE_UMFPACK:BOOL=ON \
-        -D TPL_ENABLE_SuperLU:BOOL=ON \
-        -D TPL_ENABLE_SuperLUDist:BOOL=ON \
-        -D TPL_UMFPACK_INCLUDE_DIRS="/usr/include" \
-        -D SuperLUDist_INCLUDE_DIRS:FILEPATH="/path/to/SuperLU_DIST_3.2/SRC" \
-	-D TPL_SuperLUDist_LIBRARIES:FILEPATH="/path/to/SuperLU_DIST_3.2/lib/libsuperlu_dist.a" \
-        -D SuperLU_INCLUDE_DIRS:FILEPATH="/path/to/SuperLU_4.3/SRC" \
-        -D TPL_SuperLU_LIBRARIES:FILEPATH="/path/to/SuperLU_4.3/lib/libsuperlu_4.3.a"
+        -DTPL_ENABLE_UMFPACK:BOOL=ON \
+        -DTPL_ENABLE_SuperLU:BOOL=ON \
+        -DTPL_ENABLE_SuperLUDist:BOOL=ON \
+        -DTPL_UMFPACK_INCLUDE_DIRS="/usr/include" \
+        -DSuperLUDist_INCLUDE_DIRS:FILEPATH="/path/to/SuperLU_DIST_3.2/SRC" \
+        -DTPL_SuperLUDist_LIBRARIES:FILEPATH="/path/to/SuperLU_DIST_3.2/lib/libsuperlu_dist.a" \
+        -DSuperLU_INCLUDE_DIRS:FILEPATH="/path/to/SuperLU_4.3/SRC" \
+        -DTPL_SuperLU_LIBRARIES:FILEPATH="/path/to/SuperLU_4.3/lib/libsuperlu_4.3.a"
       
Similarly, to enable MUMPS, commands should include
 
-        -D TPL_ENABLE_MUMPS:BOOL=ON \
-        -D TPL_ENABLE_SCALAPACK:BOOL=ON
+        -DTPL_ENABLE_MUMPS:BOOL=ON \
+        -DTPL_ENABLE_SCALAPACK:BOOL=ON
       
and possibly followed by
 
-        -D TPL_MUMPS_INCLUDE_DIRS:PATH=/usr/include/openmpi-x86_64 \
-        -D SCALAPACK_LIBRARY_DIRS:PATH=/lib64/openmpi/lib \
+        -DTPL_MUMPS_INCLUDE_DIRS:PATH=/usr/include/openmpi-x86_64 \
+        -DSCALAPACK_LIBRARY_DIRS:PATH=/lib64/openmpi/lib \
       
where you need to adjust the exact paths, of course.

-- 2.39.5