From: Renato Golin Date: Tue, 10 Feb 2015 14:15:58 +0000 (+0000) Subject: Fix typo in cmake example docs X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=85cbc8073bbedf468269f850b28831249d6e79d4;p=oota-llvm.git 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 --- 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