Home2L - C/C++ API
v1.4-0-g38cc (2024-05-25)
Smart Tools for a Private Home
wallclock
apps_config.H
1
/*
2
* This file is part of the Home2L project.
3
*
4
* (C) 2015-2021 Gundolf Kiefer
5
*
6
* Home2L is free software: you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation, either version 3 of the License, or
9
* (at your option) any later version.
10
*
11
* Home2L is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
* GNU General Public License for more details.
15
*
16
* You should have received a copy of the GNU General Public License
17
* along with Home2L. If not, see <https://www.gnu.org/licenses/>.
18
*
19
*/
20
21
22
/* This file contains declarations for all apps
23
*
24
* The arguments for the APP() macro are - in this order:
25
* - Name of the applet
26
* - Prefix for environment parameters (for the .enable flag)
27
* - (more may follow)
28
*/
29
30
31
// Built-in app, must always be present...
32
APP(Home,
""
)
33
34
// Optional apps...
35
#if WITH_PHONE == 1
36
APP(Phone,
"phone"
)
37
#endif
38
39
#if WITH_CALENDAR == 1
40
APP(Calendar,
"calendar"
)
41
#endif
42
43
#if WITH_MUSIC == 1
44
APP(Music,
"music"
)
45
#endif
Generated by
1.9.4