Changeset 7e38970d in mainline for uspace/app/launcher/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/app/launcher/meson.build
r7a873f0 r7e38970d 27 27 # 28 28 29 deps = [ 'g ui' ]29 deps = [ 'gfximage', 'ui' ] 30 30 31 31 _images = files('gfx/helenos.tga') 32 32 33 _images_zip = custom_target(' vlaunch_images.zip',33 _images_zip = custom_target('launcher_images.zip', 34 34 input : _images, 35 35 output : [ 'images.zip' ], 36 36 command : [ mkarray, '@OUTDIR@', 'images', 'image', uspace_as_prolog, '.data', '@INPUT@' ], 37 37 ) 38 _imgs_s = custom_target(' vlaunch_images.s',38 _imgs_s = custom_target('launcher_images.s', 39 39 input : _images_zip, 40 40 output : [ 'images.s' ], … … 42 42 capture : true, 43 43 ) 44 _imgs_h = custom_target(' vlaunch_images.h',44 _imgs_h = custom_target('launcher_images.h', 45 45 input : _images_zip, 46 46 output : [ 'images.h' ], … … 48 48 capture : true, 49 49 ) 50 _imgs_desc_c = custom_target(' vlaunch_images_desc.c',50 _imgs_desc_c = custom_target('launcher_images_desc.c', 51 51 input : _images_zip, 52 52 output : [ 'images_desc.c' ], … … 55 55 ) 56 56 57 src = [ files(' vlaunch.c'), _imgs_s, _imgs_h, _imgs_desc_c ]57 src = [ files('launcher.c'), _imgs_s, _imgs_h, _imgs_desc_c ]
Note:
See TracChangeset
for help on using the changeset viewer.