12345678910111213141516 |
- diff --git a/CMakeLists.txt b/CMakeLists.txt
- index 694cc8c..ad8fef3 100644
- --- a/CMakeLists.txt
- +++ b/CMakeLists.txt
- @@ -19,7 +19,8 @@ pkg_check_modules(GTHREAD REQUIRED "gthread-2.0 >= 2.14.0")
- add_definitions(${DEPS_CFLAGS})
- -link_libraries(${DEPS_LIBRARIES} ${GTHREAD_LIBRARIES})
- +find_library(M_LIB m)
- +link_libraries(${DEPS_LIBRARIES} ${GTHREAD_LIBRARIES} ${M_LIB})
- link_directories(${DEPS_LIBRARY_DIRS})
- --
|