CMake.README: Remove trailing whitespace

This commit is contained in:
Sebastian Pipping 2019-08-10 23:53:50 +02:00
parent 5e4af89d56
commit 45e1b4f595

View File

@ -1,6 +1,6 @@
== How to build expat with cmake (experimental) ==
The cmake based buildsystem for expat works on Windows (cygwin, mingw, Visual
The cmake based buildsystem for expat works on Windows (cygwin, mingw, Visual
Studio) and should work on all other platform cmake supports.
Assuming ~/expat-2.2.7 is the source directory of expat, add a subdirectory
@ -8,7 +8,7 @@ build and change into that directory:
~/expat-2.2.7$ mkdir build && cd build
~/expat-2.2.7/build$
From that directory, call cmake first, then call make, make test and
From that directory, call cmake first, then call make, make test and
make install in the usual way:
~/expat-2.2.7/build$ cmake ..
-- The C compiler identification is GNU
@ -18,7 +18,7 @@ make install in the usual way:
-- Generating done
-- Build files have been written to: /home/patrick/expat-2.2.7/build
If you want to specify the install location for your files, append
If you want to specify the install location for your files, append
-DCMAKE_INSTALL_PREFIX=/your/install/path to the cmake call.
~/expat-2.2.7/build$ make && make test && make install
@ -30,13 +30,13 @@ Scanning dependencies of target expat
-- Installing: /usr/local/bin/xmlwf
-- Installing: /usr/local/share/man/man1/xmlwf.1
For Windows builds, you must make sure to call cmake from an environment where
your compiler is reachable, that means either you call it from the
For Windows builds, you must make sure to call cmake from an environment where
your compiler is reachable, that means either you call it from the
Visual Studio Command Prompt or when using mingw, you must open a cmd.exe and
make sure that gcc can be called. On Windows, you also might want to specify a
make sure that gcc can be called. On Windows, you also might want to specify a
special Generator for CMake:
for Visual Studio builds do:
for Visual Studio builds do:
cmake .. -G "Visual Studio 10" && vcexpress expat.sln
for mingw builds do:
cmake .. -G "MinGW Makefiles" -DCMAKE_INSTALL_PREFIX=D:\expat-install
for mingw builds do:
cmake .. -G "MinGW Makefiles" -DCMAKE_INSTALL_PREFIX=D:\expat-install
&& gmake && gmake install