source: mainline/uspace/lib/posix/meson.build@ 5fd05862

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 5fd05862 was 5fd05862, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 6 years ago

Convert uspace to meson

  • Property mode set to 100644
File size: 609 bytes
Line 
1includes += include_directories('include/posix', 'include')
2c_args += [ '-fno-builtin', '-D_XOPEN_SOURCE' ]
3
4# TODO
5
6src = files(
7 'src/ctype.c',
8 'src/dlfcn.c',
9 'src/fcntl.c',
10 'src/fnmatch.c',
11 'src/locale.c',
12 'src/pthread/condvar.c',
13 'src/pthread/keys.c',
14 'src/pthread/mutex.c',
15 'src/pthread/threads.c',
16 'src/pwd.c',
17 'src/signal.c',
18 'src/stdio.c',
19 'src/stdlib.c',
20 'src/string.c',
21 'src/strings.c',
22 'src/sys/mman.c',
23 'src/sys/stat.c',
24 'src/sys/wait.c',
25 'src/time.c',
26 'src/unistd.c',
27)
28
29test_src = files(
30 'test/main.c',
31 'test/stdio.c',
32 'test/stdlib.c',
33 'test/unistd.c',
34)
35
36# TODO: exports
Note: See TracBrowser for help on using the repository browser.