Fix typo in cmake example docs
[oota-llvm.git] / docs / CMake.rst
index 6c94e8d416487dd509aa796527846bf805d3e960..03a809024e1f3804098f392098eb6549c8b6378c 100644 (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