Changeset 16b0ac3 in mainline for uspace/srv/net/udp/meson.build


Ignore:
Timestamp:
2019-10-12T00:22:17Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
25525133
Parents:
a163d10
Message:

Start adding unit tests for UDP associations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/udp/meson.build

    ra163d10 r16b0ac3  
    2828
    2929deps = [ 'nettl' ]
    30 src = files(
     30
     31_common_src = files(
    3132        'assoc.c',
    3233        'msg.c',
     34)
     35
     36src = files(
    3337        'pdu.c',
    3438        'service.c',
     
    3640        'udp_inet.c',
    3741)
     42
     43test_src = files(
     44        'test/assoc.c',
     45        'test/main.c',
     46)
     47
     48src = [ _common_src, src ]
     49test_src = [ _common_src, test_src ]
Note: See TracChangeset for help on using the changeset viewer.