diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-01-24 08:10:58 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-01-24 08:10:58 +0200 |
commit | 2fcb8f32f339f3a3cb550f10f565d6072f565012 (patch) | |
tree | 1124a256ba5fe1f66272b781a99374c4c688e3d7 /butl/buildfile | |
parent | f29c9a5a0cdca0205f98d55ad20d1145295db126 (diff) |
Redo config as feature test macros
Diffstat (limited to 'butl/buildfile')
-rw-r--r-- | butl/buildfile | 55 |
1 files changed, 29 insertions, 26 deletions
diff --git a/butl/buildfile b/butl/buildfile index dd2e6bb..734195e 100644 --- a/butl/buildfile +++ b/butl/buildfile @@ -3,32 +3,34 @@ # license : MIT; see accompanying LICENSE file lib{butl}: \ -{hxx cxx}{ base64 } \ -{hxx cxx}{ char-scanner } \ -{hxx }{ config } \ -{hxx cxx}{ diagnostics } \ -{hxx }{ export } \ -{hxx ixx cxx}{ fdstream } \ -{hxx ixx cxx}{ filesystem } \ -{hxx }{ manifest-forward } \ -{hxx cxx}{ manifest-parser } \ -{hxx cxx}{ manifest-serializer } \ -{hxx }{ multi-index } \ -{hxx }{ optional } \ -{hxx cxx}{ pager } \ -{hxx ixx txx cxx}{ path } \ -{hxx }{ path-io } \ -{hxx }{ path-map } \ -{hxx txx }{ prefix-map } \ -{hxx ixx cxx}{ process } \ -{hxx cxx}{ sha256 } \ -{hxx }{ small-vector } \ -{hxx txx }{ string-table } \ -{hxx cxx}{ target-triplet } \ -{hxx cxx}{ timestamp } \ -{hxx ixx cxx}{ utility } \ -{hxx }{ vector-view } \ -{hxx }{ version } + {hxx cxx}{ base64 } \ + {hxx cxx}{ char-scanner } \ + {hxx cxx}{ diagnostics } \ + {hxx }{ export } \ + {hxx ixx cxx}{ fdstream } \ + {hxx ixx cxx}{ filesystem } \ + {hxx }{ manifest-forward } \ + {hxx cxx}{ manifest-parser } \ + {hxx cxx}{ manifest-serializer } \ + {hxx }{ multi-index } \ + {hxx }{ optional } \ + {hxx cxx}{ pager } \ + {hxx ixx txx cxx}{ path } \ + {hxx }{ path-io } \ + {hxx }{ path-map } \ + {hxx txx }{ prefix-map } \ + {hxx ixx cxx}{ process } \ + {hxx cxx}{ sha256 } \ + {hxx }{ small-vector } \ + {hxx txx }{ string-table } \ + {hxx cxx}{ target-triplet } \ + {hxx cxx}{ timestamp } \ + {hxx ixx cxx}{ utility } \ + {hxx }{ vector-view } \ + {hxx }{ version } \ +ft/{hxx }{ exception } \ +ft/{hxx }{ lang } \ +ft/{hxx }{ shared_mutex } # Exclude these from compilation on non-Windows targets. # @@ -66,3 +68,4 @@ libs{butl}: cxx.export.poptions += -DLIBBUTL_SHARED # Install into the butl/ subdirectory of, say, /usr/include/. # install.include = $install.include/butl/ +install.include.subdirs = true # Recreate subdirectories. |