Changeset 7e38970d in mainline for uspace/lib/gfxfont/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/gfxfont/meson.build
r7a873f0 r7e38970d 1 1 # 2 # Copyright (c) 20 12 Petr Koupy2 # Copyright (c) 2020 Jiri Svoboda 3 3 # All rights reserved. 4 4 # … … 27 27 # 28 28 29 deps = [ ' draw' , 'softrend', 'display' ]29 deps = [ 'gfx', 'riff' ] 30 30 src = files( 31 'common.c', 32 'button.c', 33 'canvas.c', 34 'connection.c', 35 'grid.c', 36 'label.c', 37 'minimal.c', 38 'terminal.c', 39 'widget.c', 40 'window.c', 31 'src/font.c', 32 'src/glyph.c', 33 'src/glyph_bmp.c', 34 'src/text.c', 35 'src/typeface.c', 41 36 ) 37 38 test_src = files( 39 'test/font.c', 40 'test/glyph.c', 41 'test/glyph_bmp.c', 42 'test/main.c', 43 'test/text.c', 44 'test/tpf.c', 45 'test/typeface.c', 46 )
Note:
See TracChangeset
for help on using the changeset viewer.