comparison irccdctl/CMakeLists.txt @ 0:1158cffe5a5e

Initial import
author David Demelier <markand@malikania.fr>
date Mon, 08 Feb 2016 16:43:14 +0100
parents
children 98ac3c79009f
comparison
equal deleted inserted replaced
-1:000000000000 0:1158cffe5a5e
1 # # CMakeLists.txt -- CMake build system for irccd
2 #
3 # Copyright (c) 2013-2016 David Demelier <markand@malikania.fr>
4 #
5 # Permission to use, copy, modify, and/or distribute this software for any
6 # purpose with or without fee is hereby granted, provided that the above
7 # copyright notice and this permission notice appear in all copies.
8 #
9 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 #
17
18 # Project
19 project(irccdctl)
20
21 irccd_define_executable(
22 TARGET irccdctl
23 INSTALL
24 SOURCES
25 CMakeLists.txt
26 alias.cpp
27 alias.h
28 command.h
29 command-help.cpp
30 command-help.h
31 command-plugin-info.cpp
32 command-plugin-info.h
33 command-plugin-list.cpp
34 command-plugin-list.h
35 command-plugin-load.cpp
36 command-plugin-load.h
37 command-plugin-reload.cpp
38 command-plugin-reload.h
39 command-plugin-unload.cpp
40 command-plugin-unload.h
41 command-server-cmode.cpp
42 command-server-cmode.h
43 command-server-cnotice.cpp
44 command-server-cnotice.h
45 command-server-connect.cpp
46 command-server-connect.h
47 command-server-disconnect.cpp
48 command-server-disconnect.h
49 command-server-info.cpp
50 command-server-info.h
51 command-server-invite.cpp
52 command-server-invite.h
53 command-server-join.cpp
54 command-server-join.h
55 command-server-kick.cpp
56 command-server-kick.h
57 command-server-list.cpp
58 command-server-list.h
59 command-server-me.cpp
60 command-server-me.h
61 command-server-message.cpp
62 command-server-message.h
63 command-server-mode.cpp
64 command-server-mode.h
65 command-server-nick.cpp
66 command-server-nick.h
67 command-server-notice.cpp
68 command-server-notice.h
69 command-server-part.cpp
70 command-server-part.h
71 command-server-reconnect.cpp
72 command-server-reconnect.h
73 command-server-topic.cpp
74 command-server-topic.h
75 command-watch.cpp
76 command-watch.h
77 connection.cpp
78 connection.h
79 irccdctl.cpp
80 irccdctl.h
81 main.cpp
82 LIBRARIES common
83 )