source: mainline/uspace/lib/ui/meson.build@ d92b8e8f

Last change on this file since d92b8e8f was cad7b7e, checked in by Jiri Svoboda <jiri@…>, 19 months ago

Move clipboard API from libc to a separate library

  • Property mode set to 100644
File size: 2.6 KB
RevLine 
[f80690a]1#
[1eaead4]2# Copyright (c) 2023 Jiri Svoboda
[f80690a]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
[cad7b7e]29deps = [ 'gfx', 'gfxfont', 'memgfx', 'display', 'congfx', 'clipboard' ]
[f80690a]30src = files(
[96c6a00]31 'src/accel.c',
[d70dc1c4]32 'src/checkbox.c',
[8965860c]33 'src/clickmatic.c',
[8009dc27]34 'src/control.c',
[f7a90df]35 'src/dummygc.c',
[03145ee]36 'src/entry.c',
[5e109e1]37 'src/filedialog.c',
[11662bd]38 'src/filelist.c',
[8009dc27]39 'src/fixed.c',
[f93e4e3]40 'src/image.c',
[ba09d06]41 'src/label.c',
[7cf5ddb]42 'src/list.c',
[214aefb]43 'src/menu.c',
44 'src/menubar.c',
[46bd63c9]45 'src/menudd.c',
[214aefb]46 'src/menuentry.c',
[de227aba]47 'src/msgdialog.c',
[de9992c]48 'src/paint.c',
[f80690a]49 'src/pbutton.c',
[3c8c580]50 'src/popup.c',
[80d4aea]51 'src/promptdialog.c',
[7020d1f]52 'src/rbutton.c',
[47728678]53 'src/resource.c',
[bd16113]54 'src/scrollbar.c',
[c0757e1f]55 'src/selectdialog.c',
[ef734b7]56 'src/slider.c',
[1eaead4]57 'src/tab.c',
58 'src/tabset.c',
59 'src/testctl.c',
[f7a90df]60 'src/ui.c',
61 'src/wdecor.c',
62 'src/window.c',
[f80690a]63)
64
65test_src = files(
[96c6a00]66 'test/accel.c',
[d70dc1c4]67 'test/checkbox.c',
[8965860c]68 'test/clickmatic.c',
[8009dc27]69 'test/control.c',
[03145ee]70 'test/entry.c',
[5e109e1]71 'test/filedialog.c',
[11662bd]72 'test/filelist.c',
[8009dc27]73 'test/fixed.c',
[f93e4e3]74 'test/image.c',
[ba09d06]75 'test/label.c',
[7cf5ddb]76 'test/list.c',
[f80690a]77 'test/main.c',
[95a9cbc]78 'test/menu.c',
79 'test/menubar.c',
[46bd63c9]80 'test/menudd.c',
[95a9cbc]81 'test/menuentry.c',
[de227aba]82 'test/msgdialog.c',
[de9992c]83 'test/paint.c',
[f80690a]84 'test/pbutton.c',
[3c8c580]85 'test/popup.c',
[80d4aea]86 'test/promptdialog.c',
[7020d1f]87 'test/rbutton.c',
[47728678]88 'test/resource.c',
[5ef85c0]89 'test/scrollbar.c',
[c0757e1f]90 'test/selectdialog.c',
[ef734b7]91 'test/slider.c',
[1eaead4]92 'test/tab.c',
93 'test/tabset.c',
94 'test/testctl.c',
[f7a90df]95 'test/ui.c',
[1769693]96 'test/wdecor.c',
[f7a90df]97 'test/window.c',
[f80690a]98)
Note: See TracBrowser for help on using the repository browser.