File: meson.build

package info (click to toggle)
libtracefs 1.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,368 kB
  • sloc: ansic: 12,953; makefile: 609; sh: 509; yacc: 188; lex: 106
file content (17 lines) | stat: -rw-r--r-- 340 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# SPDX-License-Identifier: LGPL-2.1
#
# Copyright (c) 2023 Daniel Wagner, SUSE LLC

source = [
    'trace-utest.c',
    'tracefs-utest.c',
]

e = executable(
   'trace-utest',
   source,
   include_directories: [incdir],
   dependencies: [libtraceevent_dep, threads_dep, cunit_dep],
   link_with: libtracefs_static)

test('trace-utest', e)