diff options
Diffstat (limited to 'build/bin')
-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. |