Resolves one item in #1235. Closes #1294.
cc @hebasto
Resolves one item in #1235. Closes #1294.
78@@ -79,9 +79,9 @@ To maintain a pristine source tree, CMake encourages to perform an out-of-source
79
80 $ mkdir build && cd build
81 $ cmake ..
nit: Might be explicit:
0 $ cmake -S ..
?
78@@ -79,9 +79,9 @@ To maintain a pristine source tree, CMake encourages to perform an out-of-source
79
80 $ mkdir build && cd build
81 $ cmake ..
82- $ make
83- $ make check # run the test suite
84- $ sudo make install # optional
85+ $ cmake --build .
86+ $ ctest # run the test suite
87+ $ sudo cmake --build . --target install # optional
Is it worth mentioning a modern and more effective alternative, which is available for CMake >= 3.15:
0$ sudo cmake --install . # optional
?