annotate examples/CMakeLists.txt @ 299:648f5f949afb

core: implement stackable states
author David Demelier <markand@malikania.fr>
date Sun, 11 Apr 2021 16:41:34 +0200
parents cd5bdb995052
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
125
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
1 #
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
2 # CMakeLists.txt -- CMake build system for molko
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
3 #
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
4 # Copyright (c) 2020 David Demelier <markand@malikania.fr>
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
5 #
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
6 # Permission to use, copy, modify, and/or distribute this software for any
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
7 # purpose with or without fee is hereby granted, provided that the above
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
8 # copyright notice and this permission notice appear in all copies.
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
9 #
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
10 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
11 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
12 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
13 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
14 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
15 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
16 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
17 #
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
18
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
19 project(examples)
d59efa737fcc cmake: add examples and fix
David Demelier <markand@malikania.fr>
parents:
diff changeset
20
209
23a844fdc911 examples: move all into subdirectories, closes #2513
David Demelier <markand@malikania.fr>
parents: 203
diff changeset
21 add_subdirectory(example-action)
23a844fdc911 examples: move all into subdirectories, closes #2513
David Demelier <markand@malikania.fr>
parents: 203
diff changeset
22 add_subdirectory(example-animation)
23a844fdc911 examples: move all into subdirectories, closes #2513
David Demelier <markand@malikania.fr>
parents: 203
diff changeset
23 add_subdirectory(example-audio)
23a844fdc911 examples: move all into subdirectories, closes #2513
David Demelier <markand@malikania.fr>
parents: 203
diff changeset
24 add_subdirectory(example-battle)
23a844fdc911 examples: move all into subdirectories, closes #2513
David Demelier <markand@malikania.fr>
parents: 203
diff changeset
25 add_subdirectory(example-cursor)
23a844fdc911 examples: move all into subdirectories, closes #2513
David Demelier <markand@malikania.fr>
parents: 203
diff changeset
26 add_subdirectory(example-debug)
23a844fdc911 examples: move all into subdirectories, closes #2513
David Demelier <markand@malikania.fr>
parents: 203
diff changeset
27 add_subdirectory(example-drawable)
23a844fdc911 examples: move all into subdirectories, closes #2513
David Demelier <markand@malikania.fr>
parents: 203
diff changeset
28 add_subdirectory(example-font)
23a844fdc911 examples: move all into subdirectories, closes #2513
David Demelier <markand@malikania.fr>
parents: 203
diff changeset
29 add_subdirectory(example-gridmenu)
23a844fdc911 examples: move all into subdirectories, closes #2513
David Demelier <markand@malikania.fr>
parents: 203
diff changeset
30 add_subdirectory(example-label)
23a844fdc911 examples: move all into subdirectories, closes #2513
David Demelier <markand@malikania.fr>
parents: 203
diff changeset
31 add_subdirectory(example-message)
23a844fdc911 examples: move all into subdirectories, closes #2513
David Demelier <markand@malikania.fr>
parents: 203
diff changeset
32 add_subdirectory(example-sprite)
23a844fdc911 examples: move all into subdirectories, closes #2513
David Demelier <markand@malikania.fr>
parents: 203
diff changeset
33 add_subdirectory(example-trace)
23a844fdc911 examples: move all into subdirectories, closes #2513
David Demelier <markand@malikania.fr>
parents: 203
diff changeset
34 add_subdirectory(example-ui)