Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ui/meson.build

    r3c8c580 rcad7b7e  
    11#
    2 # Copyright (c) 2021 Jiri Svoboda
     2# Copyright (c) 2023 Jiri Svoboda
    33# All rights reserved.
    44#
     
    2727#
    2828
    29 deps = [ 'gfx', 'gfxfont', 'memgfx', 'display', 'congfx' ]
     29deps = [ 'gfx', 'gfxfont', 'memgfx', 'display', 'congfx', 'clipboard' ]
    3030src = files(
     31        'src/accel.c',
    3132        'src/checkbox.c',
     33        'src/clickmatic.c',
    3234        'src/control.c',
    3335        'src/dummygc.c',
    3436        'src/entry.c',
     37        'src/filedialog.c',
     38        'src/filelist.c',
    3539        'src/fixed.c',
    3640        'src/image.c',
    3741        'src/label.c',
     42        'src/list.c',
    3843        'src/menu.c',
    3944        'src/menubar.c',
     45        'src/menudd.c',
    4046        'src/menuentry.c',
    4147        'src/msgdialog.c',
     
    4349        'src/pbutton.c',
    4450        'src/popup.c',
     51        'src/promptdialog.c',
    4552        'src/rbutton.c',
    4653        'src/resource.c',
     54        'src/scrollbar.c',
     55        'src/selectdialog.c',
    4756        'src/slider.c',
     57        'src/tab.c',
     58        'src/tabset.c',
     59        'src/testctl.c',
    4860        'src/ui.c',
    4961        'src/wdecor.c',
     
    5264
    5365test_src = files(
     66        'test/accel.c',
    5467        'test/checkbox.c',
     68        'test/clickmatic.c',
    5569        'test/control.c',
    5670        'test/entry.c',
     71        'test/filedialog.c',
     72        'test/filelist.c',
    5773        'test/fixed.c',
    5874        'test/image.c',
    5975        'test/label.c',
     76        'test/list.c',
    6077        'test/main.c',
    6178        'test/menu.c',
    6279        'test/menubar.c',
     80        'test/menudd.c',
    6381        'test/menuentry.c',
    6482        'test/msgdialog.c',
     
    6684        'test/pbutton.c',
    6785        'test/popup.c',
     86        'test/promptdialog.c',
    6887        'test/rbutton.c',
    6988        'test/resource.c',
     89        'test/scrollbar.c',
     90        'test/selectdialog.c',
    7091        'test/slider.c',
     92        'test/tab.c',
     93        'test/tabset.c',
     94        'test/testctl.c',
    7195        'test/ui.c',
    7296        'test/wdecor.c',
Note: See TracChangeset for help on using the changeset viewer.