summaryrefslogtreecommitdiff
path: root/src/core/CMakeLists.txt
blob: 55c1e111291fcd9248b44ce580d69cc9facd7c89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#
# Copyright (C) 2003-2019 Sébastien Helleu <flashcode@flashtux.org>
# Copyright (C) 2008 Julien Louis <ptitlouis@sysif.net>
# Copyright (C) 2009 Emmanuel Bouthenot <kolter@openics.org>
#
# This file is part of WeeChat, the extensible chat client.
#
# WeeChat is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# WeeChat is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with WeeChat.  If not, see <https://www.gnu.org/licenses/>.
#

set(LIB_CORE_SRC
  weechat.c weechat.h
  wee-arraylist.c wee-arraylist.h
  wee-backtrace.c wee-backtrace.h
  wee-command.c wee-command.h
  wee-completion.c wee-completion.h
  wee-config.c wee-config.h
  wee-config-file.c wee-config-file.h
  wee-debug.c wee-debug.h
  wee-eval.c wee-eval.h
  wee-hashtable.c wee-hashtable.h
  wee-hdata.c wee-hdata.h
  wee-hook.c wee-hook.h
  wee-infolist.c wee-infolist.h
  wee-input.c wee-input.h
  wee-list.c wee-list.h
  wee-log.c wee-log.h
  wee-network.c wee-network.h
  wee-proxy.c wee-proxy.h
  wee-secure.c wee-secure.h
  wee-secure-buffer.c wee-secure-buffer.h
  wee-secure-config.c wee-secure-config.h
  wee-string.c wee-string.h
  wee-upgrade.c wee-upgrade.h
  wee-upgrade-file.c wee-upgrade-file.h
  wee-url.c wee-url.h
  wee-utf8.c wee-utf8.h
  wee-util.c wee-util.h
  wee-version.c wee-version.h
  hook/wee-hook-command-run.c hook/wee-hook-command-run.h
  hook/wee-hook-command.c hook/wee-hook-command.h
  hook/wee-hook-completion.c hook/wee-hook-completion.h
  hook/wee-hook-config.c hook/wee-hook-config.h
  hook/wee-hook-connect.c hook/wee-hook-connect.h
  hook/wee-hook-fd.c hook/wee-hook-fd.h
  hook/wee-hook-focus.c hook/wee-hook-focus.h
  hook/wee-hook-hdata.c hook/wee-hook-hdata.h
  hook/wee-hook-hsignal.c hook/wee-hook-hsignal.h
  hook/wee-hook-info-hashtable.c hook/wee-hook-info-hashtable.h
  hook/wee-hook-info.c hook/wee-hook-info.h
  hook/wee-hook-infolist.c hook/wee-hook-infolist.h
  hook/wee-hook-line.c hook/wee-hook-line.h
  hook/wee-hook-modifier.c hook/wee-hook-modifier.h
  hook/wee-hook-print.c hook/wee-hook-print.h
  hook/wee-hook-process.c hook/wee-hook-process.h
  hook/wee-hook-signal.c hook/wee-hook-signal.h
  hook/wee-hook-timer.c hook/wee-hook-timer.h
)

# Check for flock support
include(CheckSymbolExists)
check_symbol_exists(flock "sys/file.h" HAVE_FLOCK)

if(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
  find_library(EXECINFO_LIB_PATH execinfo /usr/local/lib)
  set(CMAKE_REQUIRED_LIBRARIES "${EXECINFO_LIB_PATH}")
  check_function_exists(backtrace HAVE_BACKTRACE)
else()
  check_symbol_exists(backtrace "execinfo.h" HAVE_BACKTRACE)
endif()

if(GNUTLS_FOUND)
  include_directories(${GNUTLS_INCLUDE_PATH})
endif()

include_directories(${CURL_INCLUDE_DIRS})

include_directories(${CMAKE_BINARY_DIR})
add_library(weechat_core STATIC ${LIB_CORE_SRC})
target_link_libraries(weechat_core coverage_config)
add_dependencies(weechat_core version_git)