annotate tests/src/irccdctl/cli-plugin-info/CMakeLists.txt @ 803:14f9e3b03779

tests: don't store IRCCDCTL_EXECUTABLE, closes #949 @1h
author David Demelier <markand@malikania.fr>
date Tue, 13 Nov 2018 20:21:18 +0100
parents 8c44bbcbbab9
children 8460b4a34191
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
662
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
1 #
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
2 # CMakeLists.txt -- CMake build system for irccd
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
3 #
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
4 # Copyright (c) 2013-2018 David Demelier <markand@malikania.fr>
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
5 #
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
6 # Permission to use, copy, modify, and/or distribute this software for any
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
7 # purpose with or without fee is hereby granted, provided that the above
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
8 # copyright notice and this permission notice appear in all copies.
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
9 #
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
10 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
11 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
12 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
13 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
14 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
15 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
16 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
17 #
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
18
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
19 irccd_define_test(
773
8c44bbcbbab9 Misc: style, cleanup and update
David Demelier <markand@malikania.fr>
parents: 715
diff changeset
20 NAME cli-plugin-info
8c44bbcbbab9 Misc: style, cleanup and update
David Demelier <markand@malikania.fr>
parents: 715
diff changeset
21 SOURCES main.cpp
8c44bbcbbab9 Misc: style, cleanup and update
David Demelier <markand@malikania.fr>
parents: 715
diff changeset
22 LIBRARIES libirccd-core
8c44bbcbbab9 Misc: style, cleanup and update
David Demelier <markand@malikania.fr>
parents: 715
diff changeset
23 DEPENDS irccd irccdctl
803
14f9e3b03779 tests: don't store IRCCDCTL_EXECUTABLE, closes #949 @1h
David Demelier <markand@malikania.fr>
parents: 773
diff changeset
24 FLAGS IRCCDCTL_EXECUTABLE="$<TARGET_FILE:irccdctl>"
662
e9153b85b9bd Tests: test irccdctl (plugin-* commands) #785
David Demelier <markand@malikania.fr>
parents:
diff changeset
25 )