2014-09-02 20:40:31 +00:00
|
|
|
cmake_minimum_required(VERSION 2.8.7)
|
2014-09-02 10:37:00 +00:00
|
|
|
|
|
|
|
project(tox-weechat)
|
2014-09-02 21:16:19 +00:00
|
|
|
add_definitions(-std=c99 -D_GNU_SOURCE)
|
2014-09-02 10:37:00 +00:00
|
|
|
|
|
|
|
add_library(tox SHARED
|
|
|
|
src/tox-weechat.c
|
2014-09-02 11:59:15 +00:00
|
|
|
src/tox-weechat-tox.c
|
|
|
|
src/tox-weechat-utils.c
|
2014-09-02 16:47:08 +00: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 10:37:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# remove lib prefix
|
|
|
|
set_target_properties(tox PROPERTIES PREFIX "")
|
|
|
|
|
|
|
|
target_link_libraries(tox toxcore)
|
|
|
|
|
2014-09-04 16:13:28 +00:00
|
|
|
install(TARGETS tox DESTINATION ~/.weechat/plugins)
|