You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.1 KiB
CMake

cmake_minimum_required(VERSION 2.8.7)
10 years ago
project(tox-weechat C)
option(HOME_FOLDER_INSTALL "Install to ~/.weechat/plugins instead of default location." OFF)
if(HOME_FOLDER_INSTALL)
set(INSTALL_PATH "~/.weechat/plugins")
endif()
if (NOT DEFINED INSTALL_PATH OR "${INSTALL_PATH}" STREQUAL "")
set(INSTALL_PATH "lib/weechat/plugins")
endif()
set(INSTALL_PATH "${INSTALL_PATH}" CACHE PATH "Path to install the plugin binary to.")
10 years ago
add_library(tox MODULE
10 years ago
src/tox-weechat.c
src/tox-weechat-identities.c
10 years ago
src/tox-weechat-chats.c
src/tox-weechat-friend-requests.c
src/tox-weechat-tox-callbacks.c
src/tox-weechat-commands.c
src/tox-weechat-gui.c
src/tox-weechat-utils.c
src/tox-weechat-config.c
src/tox-weechat-json.c
10 years ago
)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99 -Wall -Wextra -Werror-implicit-function-declaration -Wno-unused-parameter")
target_link_libraries(tox toxcore)
target_link_libraries(tox jansson)
# remove lib prefix (libtox.so -> tox.so)
10 years ago
set_target_properties(tox PROPERTIES PREFIX "")
install(TARGETS tox DESTINATION "${INSTALL_PATH}")