diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-08-14 19:14:01 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2016-08-14 19:14:01 +0300 |
commit | e7b542325db452a7f3c0576a9183f084536aceea (patch) | |
tree | 8672302e742d3defeeb32e51a067f5162522f0cf | |
parent | aa0370b08ea8a1ad679a746c7be21a874f264fb6 (diff) |
Fix buildfile adding missed lib{butl} prerequisites
-rw-r--r-- | butl/buildfile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/butl/buildfile b/butl/buildfile index 7e65b6c..d4f3289 100644 --- a/butl/buildfile +++ b/butl/buildfile @@ -6,7 +6,7 @@ lib{butl}: \ {hxx cxx}{ base64 } \ {hxx cxx}{ char-scanner } \ {hxx }{ export } \ -{hxx cxx}{ fdstream } \ +{hxx ixx cxx}{ fdstream } \ {hxx ixx cxx}{ filesystem } \ {hxx }{ multi-index } \ {hxx }{ optional } \ @@ -30,6 +30,11 @@ lib{butl}: \ # lib{butl}: file{sha256c.c} +# These ones are included into timestamp.cxx so treat them as files to exclude +# from the compilation. +# +lib{butl}: file{strptime.c timelocal.h timelocal.c} + cxx.poptions =+ -I$src_root lib{butl}: cxx.export.poptions = -I$src_root |