summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/tolua++/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tolua++/CMakeLists.txt b/lib/tolua++/CMakeLists.txt
index b27e9f67b..637e44d8e 100644
--- a/lib/tolua++/CMakeLists.txt
+++ b/lib/tolua++/CMakeLists.txt
@@ -19,8 +19,8 @@ add_library(tolualib ${LIB_SOURCE})
#m is the standard math librarys
if(UNIX)
-find_library(M_LIB m)
-target_link_libraries(${M_LIB})
+add_library(math STATIC IMPORTED)
+target_link_libraries(tolua math)
endif()
target_link_libraries(tolua lua tolualib)