summaryrefslogtreecommitdiff
path: root/bsd-user/meson.build
blob: 25c3976eade21c3096feb41fb633d01923d0be1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
if not have_bsd_user
   subdir_done()
endif

common_user_inc += include_directories('.')

bsd_user_ss.add(files(
  'bsdload.c',
  'elfload.c',
  'main.c',
  'mmap.c',
  'signal.c',
  'strace.c',
  'syscall.c',
  'uaccess.c',
))

# Pull in the OS-specific build glue, if any
subdir(targetos)