summaryrefslogtreecommitdiff
path: root/meson.build
blob: 0bd75d3886c50beb23a6d6977343cd4512b2b267 (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
28
29
30
31
32
33
project(
  'finserv',
  version : files('VERSION.txt'),
)

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

subdir('frontend')

finserv_linux_amd64 = custom_target(
  input : [
    meson.current_source_dir() / 'main.go',
    meson.current_source_dir() / 'handlers.go',
  ],
  output : 'finserv-linux-amd64',
  env : {'GOOS': 'linux', 'GOARCH': 'amd64'},
  command : [
    go,
    'build',
    '-o',
    '@OUTPUT@',
    '@INPUT@',
  ],
  depends : frontend,
  build_by_default : true,
)

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