annotate C++/Tests/Pack/CMakeLists.txt @ 223:c6513d9c696b

Pack: add unit tests
author David Demelier <markand@malikania.fr>
date Thu, 08 May 2014 23:51:07 +0200
parents
children ff2db0ed78f1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
223
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
1 #
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
2 # CMakeLists.txt -- tests for Pack
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
3 #
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
4 # Copyright (c) 2014 David Demelier <markand@malikania.fr>
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
5 #
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
6 # Permission to use, copy, modify, and/or distribute this software for any
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
7 # purpose with or without fee is hereby granted, provided that the above
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
8 # copyright notice and this permission notice appear in all copies.
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
9 #
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
10 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
11 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
12 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
13 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
14 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
15 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
16 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
17 #
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
18
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
19 set(
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
20 SOURCES
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
21 ${code_SOURCE_DIR}/C++/Pack.cpp
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
22 ${code_SOURCE_DIR}/C++/Pack.h
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
23 TestPack.cpp
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
24 TestPack.h
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
25 )
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
26
c6513d9c696b Pack: add unit tests
David Demelier <markand@malikania.fr>
parents:
diff changeset
27 define_test(pack "${SOURCES}")