summaryrefslogtreecommitdiffstats
path: root/src/irc/meson.build
blob: 72abc3ce3955afb826e4cf22eb6317481cf4fc13 (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
# this file is part of irssi

subdir('core')
subdir('dcc')
subdir('flood')
subdir('notifylist')

libirc_a = static_library('irc',
  files(
    'irc.c',
  ),
  link_with : [
    libirc_core_a,
    libirc_dcc_a,
    libirc_flood_a,
    libirc_notifylist_a,
  ],
  include_directories : rootinc,
  implicit_include_directories : false,
)

if want_proxy
  subdir('proxy')
endif