summaryrefslogtreecommitdiff
path: root/meson.build
blob: d264c350b8c32e4c7a5c614c5a8248365f0a382c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
project('sia-server')

go = find_program('go', required : true)

sia_server = custom_target(
  input : [
    meson.current_source_dir() / 'main.go',
  ],
  output : 'sia-server',
  command : [
    go,
    'build',
    '-o',
    '@OUTPUT@',
    '@INPUT@',
  ],
  depend_files : [
  ],
  build_by_default : true,
)

run_target(
  'run',
  command : [
    sia_server,
  ],
)