From 85cbc8073bbedf468269f850b28831249d6e79d4 Mon Sep 17 00:00:00 2001 From: Renato Golin Date: Tue, 10 Feb 2015 14:15:58 +0000 Subject: [PATCH] Fix typo in cmake example docs Patch by Vinicius Tinti. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228690 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CMake.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CMake.rst b/docs/CMake.rst index 6c94e8d4164..03a809024e1 100644 --- a/docs/CMake.rst +++ b/docs/CMake.rst @@ -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 -- 2.34.1