annotate examples/js-animation/CMakeLists.txt @ 110:119bcc5a727e

Misc: replace copyrights, closes #655
author David Demelier <markand@malikania.fr>
date Tue, 05 Sep 2017 14:06:31 +0200
parents a162f380f02e
children 4b292c20124c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
74
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
1 #
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
2 # CMakeLists.txt -- CMake build system for malikania
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
3 #
110
119bcc5a727e Misc: replace copyrights, closes #655
David Demelier <markand@malikania.fr>
parents: 80
diff changeset
4 # Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
74
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
5 #
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
6 # Permission to use, copy, modify, and/or distribute this software for any
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
7 # purpose with or without fee is hereby granted, provided that the above
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
8 # copyright notice and this permission notice appear in all copies.
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
9 #
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
10 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
11 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
12 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
13 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
14 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
15 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
16 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
17 #
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
18
80
a162f380f02e CMake: create examples, closes #615
David Demelier <markand@malikania.fr>
parents: 74
diff changeset
19 malikania_define_example(
a162f380f02e CMake: create examples, closes #615
David Demelier <markand@malikania.fr>
parents: 74
diff changeset
20 TARGET js-animation
74
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
21 LIBRARIES libmlk-client-js
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
22 SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.cpp
78de82cc6bde Tests: move graphical examples into examples, closes #606
David Demelier <markand@malikania.fr>
parents:
diff changeset
23 )