2014-09-02 22:40:31 +02:00
|
|
|
cmake_minimum_required(VERSION 2.8.7)
|
2014-09-02 12:37:00 +02:00
|
|
|
|
|
|
|
project(tox-weechat)
|
|
|
|
|
2014-09-08 03:22:51 +02:00
|
|
|
add_library(tox MODULE
|
2014-09-02 12:37:00 +02:00
|
|
|
src/tox-weechat.c
|
2014-09-02 13:59:15 +02:00
|
|
|
src/tox-weechat-tox.c
|
|
|
|
src/tox-weechat-utils.c
|
2014-09-02 18:47:08 +02:00
|
|
|
src/tox-weechat-commands.c
|
|
|
|
src/tox-weechat-gui.c
|
|
|
|
src/tox-weechat-chats.c
|
|
|
|
src/tox-weechat-friend-requests.c
|
2014-09-02 12:37:00 +02:00
|
|
|
)
|
2014-09-08 02:59:50 +02:00
|
|
|
add_definitions(-D_GNU_SOURCE)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -Wall -Wextra -Werror-implicit-function-declaration -Wno-unused-parameter")
|
|
|
|
|
2014-09-08 03:28:15 +02:00
|
|
|
target_link_libraries(tox toxcore)
|
|
|
|
|
2014-09-08 00:22:49 +02:00
|
|
|
# remove lib prefix (libtox.so -> tox.so)
|
2014-09-02 12:37:00 +02:00
|
|
|
set_target_properties(tox PROPERTIES PREFIX "")
|
|
|
|
|
2014-09-08 00:22:49 +02:00
|
|
|
install(TARGETS tox DESTINATION lib/weechat/plugins)
|