1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00

Fix typo in cmake example docs

Patch by Vinicius Tinti.

llvm-svn: 228690
This commit is contained in:
Renato Golin 2015-02-10 14:15:58 +00:00
parent 6fc796d731
commit a82e770335

View File

@ -429,7 +429,7 @@ and uses them to build a simple application ``simple-tool``.
add_definitions(${LLVM_DEFINITIONS})
# Now build our tools
add_excutable(simple-tool tool.cpp)
add_executable(simple-tool tool.cpp)
# Find the libraries that correspond to the LLVM components
# that we wish to use