Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit 0dffb7b

Browse files
committed
clang/www/get_started.html: s/cmake/CMake/
Suggested by Sean McBride, thanks! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168744 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent bd8a11e commit 0dffb7b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

www/get_started.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ <h3 id="buildWindows">Using Visual Studio</h3>
138138
<li><b>Subversion</b>. Source code control program. Get it from:
139139
<a href="http://subversion.tigris.org/getting.html">
140140
http://subversion.tigris.org/getting.html</a></li>
141-
<li><b>cmake</b>. This is used for generating Visual Studio solution and
141+
<li><b>CMake</b>. This is used for generating Visual Studio solution and
142142
project files. Get it from:
143143
<a href="http://www.cmake.org/cmake/resources/software.html">
144144
http://www.cmake.org/cmake/resources/software.html</a></li>
@@ -169,19 +169,19 @@ <h3 id="buildWindows">Using Visual Studio</h3>
169169
<li><tt>svn co http://llvm.org/svn/llvm-project/cfe/trunk clang</tt></li>
170170
</ul>
171171
</li>
172-
<li>Run cmake to generate the Visual Studio solution and project files:
172+
<li>Run CMake to generate the Visual Studio solution and project files:
173173
<ul>
174174
<li><tt>cd ..\..</tt> (back to where you started)</li>
175175
<li><tt>mkdir build</tt> (for building without polluting the source dir)</li>
176176
<li><tt>cd build</tt></li>
177177
<li>If you are using Visual Studio 2008: <tt>cmake -G "Visual Studio 9 2008" ..\llvm</tt></li>
178178
<li>Or if you are using Visual Studio 2010: <tt>cmake -G "Visual Studio 10" ..\llvm</tt></li>
179-
<li>By default, cmake will target LLVM to X86. If you want all targets
179+
<li>By default, CMake will target LLVM to X86. If you want all targets
180180
(needed if you want to run the LLVM tests), add the <tt>-DLLVM_TARGETS_TO_BUILD=all</tt> option to the
181-
cmake command line. Or specify a target from the LLVM_TARGETS_TO_BUILD
181+
CMake command line. Or specify a target from the LLVM_TARGETS_TO_BUILD
182182
definition in CMakeLists.txt.</li>
183183
<li>See the <a href="http://www.llvm.org/docs/CMake.html">LLVM CMake guide</a> for
184-
more information on other configuration options for cmake.</li>
184+
more information on other configuration options for CMake.</li>
185185
<li>The above, if successful, will have created an LLVM.sln file in the
186186
<tt>build</tt> directory.
187187
</ul>

0 commit comments

Comments
 (0)