source: mainline/uspace/app/meson.build@ 4bfb5a0

Last change on this file since 4bfb5a0 was d8503fd, checked in by Jiri Svoboda <jiri@…>, 3 years ago

Display configuration utility and server support

Currently we can only create, list and delete seats using the
'disp' utility (but no way to assign devices).

  • Property mode set to 100644
File size: 2.3 KB
Line 
1#
2# Copyright (c) 2019 Jiří Zárevúcky
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8#
9# - Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# - Redistributions in binary form must reproduce the above copyright
12# notice, this list of conditions and the following disclaimer in the
13# documentation and/or other materials provided with the distribution.
14# - The name of the author may not be used to endorse or promote products
15# derived from this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28
29apps = [
30 'barber',
31 'bdsh',
32 'bithenge',
33 'blkdump',
34 'calculator',
35 'contacts',
36 'corecfg',
37 'cpptest',
38 'date',
39 'devctl',
40 'df',
41 'disp',
42 'dnscfg',
43 'dnsres',
44 'download',
45 'edit',
46 'fdisk',
47 'fontedit',
48 'getterm',
49 'gfxdemo',
50 'gunzip',
51 'hbench',
52 'hello',
53 'inet',
54 'init',
55 'kill',
56 'killall',
57 'kio',
58 'launcher',
59 'loc',
60 'logset',
61 'lprint',
62 'mixerctl',
63 'mkbd',
64 'mkexfat',
65 'mkext4',
66 'mkfat',
67 'mkmfs',
68 'modplay',
69 'nav',
70 'netecho',
71 'nic',
72 'nterm',
73 'pci',
74 'ping',
75 'pkg',
76 'redir',
77 'sbi',
78 'sportdmp',
79 'stats',
80 'sysinfo',
81 'sysinst',
82 'taskbar',
83 'taskdump',
84 'terminal',
85 'tester',
86 'testread',
87 'testrunner',
88 'testwrit',
89 'tetris',
90 'tmon',
91 'top',
92 'trace',
93 'uidemo',
94 'untar',
95 'usbinfo',
96 'viewer',
97 'vol',
98 'vuhid',
99 'wavplay',
100 'websrv',
101 'wifi_supplicant',
102]
103
104if CONFIG_BUILD_SHARED_LIBS
105 apps += [
106 'dltest',
107 'dltests',
108 ]
109endif
Note: See TracBrowser for help on using the repository browser.