From: felix.gruber
This page provides details about the CMake build system. Files
processed by the top level
@@ -115,7 +115,7 @@
)
CMake operates almost always with variables in global state. To guard
- against accidential overwrite of variables the following naming
+ against accidental overwrite of variables the following naming
conventions must be followed at all times:
CMakeLists.txt
script are
- listed in the TOC in cronological order.
+ listed in the TOC in chronological order.
CHECK_CXX_SOURCE_COMPILES(source variable)
- - Checks whether it is possible to compile _and_ link the code snipet
- <source>. If succesful, variable is set to 1.
+ - Checks whether it is possible to compile _and_ link the code snippet
+ <source>. If successful, variable is set to 1.
CHECK_CXX_SOURCE_RUNS(source variable)
- - variable is set to 1 if <source> coulde be succesfully compiled and
+ - variable is set to 1 if <source> could be successfully compiled and
linked and the resulting program ran and exited without error.
Avoid this macro outside of a DEAL_II_ALLOW_PLATFORM_INTROSPECTION
guard. A sensible fallback should be provided if the check cannot
@@ -306,7 +306,7 @@
CMAKE_REQUIRED_INCLUDES
and
- CMAKE_REQUIRED_LIBRARIES
. It is best ot append these
+ CMAKE_REQUIRED_LIBRARIES
. It is best to append these
lists and later on reset CMAKE_REQUIRED_*
(including
CMAKE_REQUIRED_FLAGS
) to their default values:
@@ -432,7 +432,7 @@
FEATURE_<FEATURE>_DEPENDS (a variable)
- a variable which contains an optional list of other features
- this feature depends on (and which have to be enbled for this feature
+ this feature depends on (and which have to be enabled for this feature
to work.) The features must be given with the full option toggle:
DEAL_II_WITH_[...]
@@ -607,7 +607,7 @@
# Glob for all header files associated with the object target:
# As this list is only for cosmetic reasons, so that associated header
# files show up in IDEs, we don't manage an explicit list (with the
- # tradeoff to have to run "make rebuild_cache" when a new header file
+ # trade-off to have to run "make rebuild_cache" when a new header file
# emerges...)
#
FILE(GLOB _header
diff --git a/deal.II/doc/development/cmake.html b/deal.II/doc/development/cmake.html
index 65b39f8e58..2cfdb653de 100644
--- a/deal.II/doc/development/cmake.html
+++ b/deal.II/doc/development/cmake.html
@@ -123,7 +123,7 @@
switches off support for the METIS library that may have been
automatically detected during the first invocation of
- cmake
and enables support for Trilinos by enablind
+ cmake
and enables support for Trilinos by enabling
DEAL_II_WITH_TRILINOS
and setting
TRILINOS_DIR
.
Find<Module>
mechanism may be set,
hinted or overwritten directly (variable names are highly
- dependend on the actual library). You can get a list via
+ dependent on the actual library). You can get a list via
make edit_cache @@ -608,7 +608,7 @@
cmake
.
+ invocation of cmake
.