From be77ecf19dc41ceca525cddce8f2f2b903a542ce Mon Sep 17 00:00:00 2001 From: Tycho Bickerstaff Date: Fri, 20 Dec 2013 15:24:55 +0000 Subject: [PATCH] fixed lua dependency on libm --- lib/lua/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/lua/CMakeLists.txt b/lib/lua/CMakeLists.txt index 2fc194874..6ffe3259a 100644 --- a/lib/lua/CMakeLists.txt +++ b/lib/lua/CMakeLists.txt @@ -10,3 +10,4 @@ file(GLOB SOURCE add_library(lua ${SOURCE}) +target_link_libraries(lua m)