diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-12 09:00:14 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-12 09:00:14 +0200 |
commit | dd4a389117812f0d3b45473d87214d67d0cb4a3a (patch) | |
tree | 72cf98c514352b78382dcb9f84c2268a14798a82 /build/bin/module.cxx | |
parent | c642d8673124b8667123a01a32fa7e83b6301aab (diff) |
Add bin.libprefix to override default library prefix
Diffstat (limited to 'build/bin/module.cxx')
-rw-r--r-- | build/bin/module.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build/bin/module.cxx b/build/bin/module.cxx index e17463c..5f65b8d 100644 --- a/build/bin/module.cxx +++ b/build/bin/module.cxx @@ -57,6 +57,8 @@ namespace build v.find ("bin.liba.lib", strings_type); v.find ("bin.libso.lib", strings_type); v.find ("bin.rpath", strings_type); //@@ VAR paths_type + + v.find ("bin.libprefix", string_type); } // Register target types. @@ -152,6 +154,7 @@ namespace build if (const value& v = config::optional (r, "config.bin.rpath")) b.assign ("bin.rpath") += as<strings> (v); + // Configure "installability" of our target types. // install::path<exe> (b, dir_path ("bin")); // Install into install.bin. |