diff options
author | Luz Paz <luzpaz@users.noreply.github.com> | 2018-01-03 12:09:54 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2018-01-03 19:52:01 (GMT) |
commit | 3ab7bf82852a43871edd6b2d026f35caeeb71307 (patch) | |
tree | 74091fa34c79611957c11592aa59efa5f4465c58 /Modules/FindLua50.cmake | |
parent | 3e1f5b11e0cfaeb28d1bc4de36e5856344ccb87c (diff) | |
download | CMake-3ab7bf82852a43871edd6b2d026f35caeeb71307.zip CMake-3ab7bf82852a43871edd6b2d026f35caeeb71307.tar.gz CMake-3ab7bf82852a43871edd6b2d026f35caeeb71307.tar.bz2 |
Various typo fixes
Some are user-facing. Others are source comments.
Diffstat (limited to 'Modules/FindLua50.cmake')
-rw-r--r-- | Modules/FindLua50.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FindLua50.cmake b/Modules/FindLua50.cmake index 838ca6a..315f301 100644 --- a/Modules/FindLua50.cmake +++ b/Modules/FindLua50.cmake @@ -80,10 +80,10 @@ else() # include the math library for Unix if(UNIX AND NOT APPLE) find_library(MATH_LIBRARY_FOR_LUA m) - set( LUA_LIBRARIES "${LUA_LIBRARY_lualib};${LUA_LIBRARY_lua};${MATH_LIBRARY_FOR_LUA}" CACHE STRING "This is the concatentation of lua and lualib libraries") + set( LUA_LIBRARIES "${LUA_LIBRARY_lualib};${LUA_LIBRARY_lua};${MATH_LIBRARY_FOR_LUA}" CACHE STRING "This is the concatenation of lua and lualib libraries") # For Windows and Mac, don't need to explicitly include the math library else() - set( LUA_LIBRARIES "${LUA_LIBRARY_lualib};${LUA_LIBRARY_lua}" CACHE STRING "This is the concatentation of lua and lualib libraries") + set( LUA_LIBRARIES "${LUA_LIBRARY_lualib};${LUA_LIBRARY_lua}" CACHE STRING "This is the concatenation of lua and lualib libraries") endif() endif() endif() |