From bdd140f4f40651b41bdc59d7672434816de8eef9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Pettersson?= Date: Mon, 8 Sep 2014 03:24:47 +0200 Subject: [PATCH] Removed library linking as plugin is now compiled like a module. --- CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f1016c6..63fa7cd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,8 +14,6 @@ add_library(tox MODULE add_definitions(-D_GNU_SOURCE) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -Wall -Wextra -Werror-implicit-function-declaration -Wno-unused-parameter") -target_link_libraries(tox toxcore) - # remove lib prefix (libtox.so -> tox.so) set_target_properties(tox PROPERTIES PREFIX "")