Changeset c37c24c in mainline for uspace/app/aboutos/meson.build


Ignore:
Timestamp:
2024-04-07T09:52:47Z (14 months ago)
Author:
Nataliia Korop <n.corop08@…>
Children:
e55d2c1
Parents:
6c1e7c0 (diff), 34aad53d (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.
Message:

Merge branch 'topic/packet-capture' into topic/packet-capture-choose-nic

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/app/aboutos/meson.build

    r6c1e7c0 rc37c24c  
    11#
     2# Copyright (c) 2024 Jiri Svoboda
    23# Copyright (c) 2012 Petr Koupy
    34# All rights reserved.
     
    3132_images = files('gfx/helenos.tga')
    3233
    33 _images_zip = custom_target('launcher_images.zip',
     34_images_zip = custom_target('aboutos_images.zip',
    3435        input : _images,
    3536        output : [ 'images.zip' ],
    36         command : [ mkarray, '@OUTDIR@', 'images', 'image', uspace_as_prolog, '.data', '@INPUT@' ],
     37        command : [ mkarray, '@OUTDIR@', 'images', 'image', 'image', uspace_as_prolog, '.data', '@INPUT@' ],
    3738)
    38 _imgs_s = custom_target('launcher_images.s',
     39_imgs_s = custom_target('aboutos_images.s',
    3940        input : _images_zip,
    4041        output : [ 'images.s' ],
     
    4243        capture : true,
    4344)
    44 _imgs_h = custom_target('launcher_images.h',
     45_imgs_h = custom_target('aboutos_images.h',
    4546        input : _images_zip,
    4647        output : [ 'images.h' ],
     
    4849        capture : true,
    4950)
    50 _imgs_desc_c = custom_target('launcher_images_desc.c',
     51_imgs_desc_c = custom_target('aboutos_images_desc.c',
    5152        input : _images_zip,
    5253        output : [ 'images_desc.c' ],
     
    5556)
    5657
    57 src = [ files('launcher.c'), _imgs_s, _imgs_h, _imgs_desc_c ]
     58c_args += [ '-DHELENOS_RELEASE=' + HELENOS_RELEASE, '-DHELENOS_COPYRIGHT=' + HELENOS_COPYRIGHT, '-DHELENOS_CODENAME=' + HELENOS_CODENAME ]
     59src = [ files('aboutos.c'), _imgs_s, _imgs_h, _imgs_desc_c ]
Note: See TracChangeset for help on using the changeset viewer.