Skip to content

Commit d79edf5

Browse files
committed
Consistently capitalise CMake when naming the build system
Because "CMake" should be capitalised that way; not "cmake" or "CMAKE".
1 parent 1eca47c commit d79edf5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

COMPILING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ past, but are not actively tested:
1919
- FreeBSD 11
2020
- Cygwin
2121

22-
# Building using CMAKE
22+
# Building using CMake
2323

2424
Building with CMake is supported across Linux, MacOS X and Windows with Visual
2525
Studio 2019. There are also hand-written make files which can be used to build
@@ -33,7 +33,7 @@ files.
3333
1. Ensure you have all the build dependencies installed. Build dependencies are
3434
the same as for the makefile build, but with the addition of CMake version
3535
3.2 or higher. The installed CMake version can be queried with `cmake
36-
--version`. To install cmake:
36+
--version`. To install CMake:
3737
- On Debian-like distributions, do
3838
```
3939
apt-get install g++ gcc flex bison make git curl patch cmake
@@ -52,7 +52,7 @@ files.
5252
difficult, you can avoid needing these dependencies by not building
5353
JBMC. Just pass `-DWITH_JBMC=OFF` to cmake in step (4) below.
5454
- On Windows, ensure you have Visual Studio 2019 or later installed. The
55-
developer command line that comes with Visual Studio 2019 has cmake
55+
developer command line that comes with Visual Studio 2019 has CMake
5656
already available. You will also need to ensure that you have winflexbison
5757
installed and available in the path. winflexbison is available from
5858
[the github release page](https://github.com/lexxmark/winflexbison/releases/)
@@ -358,7 +358,7 @@ If compiling with make:
358358
2. Uncomment the definition of `CUDD` in the file `src/config.inc`.
359359
3. Compile with `make -C src`
360360
361-
If compiling with cmake:
361+
If compiling with CMake:
362362
363363
1. Add the `-DCMAKE_USE_CUDD=true` flag to the `cmake` configuration phase.
364364
For instance:
@@ -412,7 +412,7 @@ make -C src glucose-download
412412
make -C src GLUCOSE=../../glucose-syrup
413413
```
414414
415-
For `cmake` the alternatives can be built with the following arguments to `cmake`
415+
For CMake the alternatives can be built with the following arguments to `cmake`
416416
for CaDiCaL `-Dsat_impl=cadical` and for glucose `-Dsat_impl=glucose`.
417417
418418

0 commit comments

Comments
 (0)