blob: 477cebd8f4436cb92048b181b43a6f9fb7c693d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# file : loader/buildfile
# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
import libs += libbpkg%lib{bpkg}
import libs += libbutl%lib{butl}
import libs += libodb-pgsql%lib{odb-pgsql}
import libs += libodb%lib{odb}
include ../brep/
exe{brep-loader}: \
{ cxx}{ loader } \
{hxx ixx cxx}{ options } \
../brep/lib{brep} $libs
cli.options += -I $src_root --include-with-brackets --include-prefix loader \
--guard-prefix LOADER
{hxx ixx cxx}{options}: cli{options}
|