diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-08-29 17:52:32 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-08-29 17:52:32 +0200 |
commit | abce0927dcafb2ec7f48915d9596e36468d56f8f (patch) | |
tree | 6772bfc3c9375b552d90b57cbe0c6608101b8edd | |
parent | e8a1456914deb51d47ec57d8989fed3ab8d34db4 (diff) |
Fix buildfile
-rw-r--r-- | bpkg/buildfile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bpkg/buildfile b/bpkg/buildfile index f1ce654..0b45ea5 100644 --- a/bpkg/buildfile +++ b/bpkg/buildfile @@ -2,7 +2,7 @@ # copyright : Copyright (c) 2014-2016 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -import libs += libbutl%lib{butl} +import int_libs = libbutl%lib{butl} lib{bpkg}: \ {hxx }{ export } \ @@ -10,13 +10,15 @@ lib{bpkg}: \ {hxx cxx}{ manifest-parser } \ {hxx cxx}{ manifest-serializer } \ {hxx }{ version } \ -$libs + $int_libs cxx.poptions =+ -I$src_root obja{*}: cxx.poptions += -DLIBBPKG_STATIC_BUILD objs{*}: cxx.poptions += -DLIBBPKG_SHARED_BUILD lib{bpkg}: cxx.export.poptions = -I$src_root +lib{bpkg}: cxx.export.libs = $int_libs + liba{bpkg}: cxx.export.poptions += -DLIBBPKG_STATIC libs{bpkg}: cxx.export.poptions += -DLIBBPKG_SHARED |