comparison tests/src/libirccd/CMakeLists.txt @ 611:9fbd1700435b

Tests: reoganize hierarchy
author David Demelier <markand@malikania.fr>
date Fri, 15 Dec 2017 15:37:58 +0100
parents
children 27587ff92a64
comparison
equal deleted inserted replaced
610:22b3cd6f991f 611:9fbd1700435b
1 #
2 # CMakeLists.txt -- CMake build system for irccd
3 #
4 # Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
5 #
6 # Permission to use, copy, modify, and/or distribute this software for any
7 # purpose with or without fee is hereby granted, provided that the above
8 # copyright notice and this permission notice appear in all copies.
9 #
10 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #
18
19 add_subdirectory(command-plugin-config)
20 add_subdirectory(command-plugin-info)
21 add_subdirectory(command-plugin-list)
22 add_subdirectory(command-plugin-load)
23 add_subdirectory(command-plugin-reload)
24 add_subdirectory(command-plugin-unload)
25 add_subdirectory(command-rule-add)
26 add_subdirectory(command-rule-edit)
27 add_subdirectory(command-rule-info)
28 add_subdirectory(command-rule-list)
29 add_subdirectory(command-rule-move)
30 add_subdirectory(command-rule-remove)
31 add_subdirectory(command-server-connect)
32 add_subdirectory(command-server-disconnect)
33 add_subdirectory(command-server-info)
34 add_subdirectory(command-server-invite)
35 add_subdirectory(command-server-join)
36 add_subdirectory(command-server-kick)
37 add_subdirectory(command-server-list)
38 add_subdirectory(command-server-me)
39 add_subdirectory(command-server-message)
40 add_subdirectory(command-server-mode)
41 add_subdirectory(command-server-nick)
42 add_subdirectory(command-server-notice)
43 add_subdirectory(command-server-part)
44 add_subdirectory(command-server-reconnect)
45 add_subdirectory(command-server-topic)
46
47 add_subdirectory(dynlib-plugin)
48 add_subdirectory(irc)
49 add_subdirectory(logger)
50 add_subdirectory(rules)
51 add_subdirectory(util)