aboutsummaryrefslogtreecommitdiff
path: root/load/buildfile
blob: e377a8ef8d36d0a7d48afdb5938a7af6e214e6a0 (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
# file      : load/buildfile
# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

import libs  = libodb%lib{odb}
import libs += libodb-pgsql%lib{odb-pgsql}
import libs += libbutl%lib{butl}
import libs += libbpkg%lib{bpkg}

include ../libbrep/

exe{brep-load}:                    \
{            cxx}{ load          } \
{hxx ixx     cxx}{ load-options  } \
{hxx         cxx}{ types-parsers } \
../libbrep/lib{brep} $libs

# Generated options parser.
#
if $cli.configured
{
  cli.cxx{load-options}: cli{load}

  cli.options += -I $src_root --include-with-brackets --include-prefix load \
--guard-prefix LOAD --generate-specifier --page-usage print_ --ansi-color   \
--cxx-prologue "#include <load/types-parsers.hxx>"                          \
--long-usage

  # Include generated cli files into the distribution.
  #
  cli.cxx{load-options}: dist = true
}