Changeset 7e38970d in mainline for uspace/lib/ui/meson.build
- Timestamp:
- 2020-12-07T00:08:37Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 25f26600
- Parents:
- 7a873f0 (diff), 8596474 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/meson.build
r7a873f0 r7e38970d 1 1 # 2 # Copyright (c) 20 11 Petr Koupy2 # Copyright (c) 2020 Jiri Svoboda 3 3 # All rights reserved. 4 4 # … … 27 27 # 28 28 29 deps = [ ' softrend' , 'compress' ]29 deps = [ 'gfx', 'gfxfont', 'memgfx', 'display' ] 30 30 src = files( 31 'codec/tga.c', 32 'codec/tga.gz.c', 33 'codec/webp.c', 34 'cursor/embedded.c', 35 'font/embedded.c', 36 'font/bitmap_backend.c', 37 'font/pcf.c', 38 'gfx/font-8x16.c', 39 'gfx/cursor-11x18.c', 40 'drawctx.c', 41 'cursor.c', 42 'font.c', 43 'path.c', 44 'source.c', 45 'surface.c', 31 'src/control.c', 32 'src/dummygc.c', 33 'src/entry.c', 34 'src/fixed.c', 35 'src/image.c', 36 'src/label.c', 37 'src/paint.c', 38 'src/pbutton.c', 39 'src/resource.c', 40 'src/ui.c', 41 'src/wdecor.c', 42 'src/window.c', 46 43 ) 44 45 test_src = files( 46 'test/control.c', 47 'test/entry.c', 48 'test/fixed.c', 49 'test/image.c', 50 'test/label.c', 51 'test/main.c', 52 'test/paint.c', 53 'test/pbutton.c', 54 'test/resource.c', 55 'test/ui.c', 56 'test/wdecor.c', 57 'test/window.c', 58 )
Note:
See TracChangeset
for help on using the changeset viewer.