blob: 65679bf96eeb3c2182ca9c8efc24b6aa81eb71b9 (
about) (
plain) (
blame)
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
|
# CMakeLists.txt for src/modules/
if(APPLE)
set(CMAKE_MODULE_LINKER_FLAGS "-undefined dynamic_lookup")
endif()
include_directories(
../kvilib/tal/
../kvilib/config/
../kvilib/core/
../kvilib/ext/
../kvilib/file/
../kvilib/irc/
../kvilib/locale/
../kvilib/net/
../kvilib/system/
../kvirc/kernel/
../kvirc/kvs/
../kvirc/kvs/event/
../kvirc/kvs/object/
../kvirc/kvs/parser/
../kvirc/kvs/tree/
../kvirc/module/
../kvirc/sparser/
../kvirc/ui/
)
subdirs(
about action actioneditor addon aliaseditor avatar
chan channelsjoin classeditor codetester config context
dcc dialog
editor eventeditor
file filetransferwindow fish
help http
ident iograph
lamerizer language links list log logview
mask math mediaplayer mircimport my
notifier
objects options
package perlcore popup popupeditor proxydb pythoncore
raweditor regchan reguser rijndael rot13
serverdb setup sharedfile sharedfileswindow snd socketspy spaste str system
texticons term theme tip tmphighlight toolbar toolbareditor torrent trayicon
upnp url userlist
window
)
if(COMPILE_PERL_SUPPORT)
subdirs(perl)
endif()
if(COMPILE_PYTHON_SUPPORT)
subdirs(python)
endif()
if(COMPILE_ENCHANT_SUPPORT OR COMPILE_WINSPELLCHECKER_SUPPORT)
subdirs(spellchecker)
endif()
|