2
0
mirror of https://github.com/boostorg/dll.git synced 2026-01-23 17:42:11 +00:00

Fix Windows compilation, refactor all the Jamfile's logic for providing shared library locations

This commit is contained in:
Antony Polukhin
2015-09-06 21:48:25 +03:00
parent 79716b0d19
commit 3d79f2c972
17 changed files with 166 additions and 505 deletions

View File

@@ -12,7 +12,7 @@
#include <boost/dll/library_info.hpp>
#include <iostream>
void load_and_execute(const boost::filesystem::path* libraries, std::size_t libs_count) {
void load_and_execute(const boost::filesystem::path libraries[], std::size_t libs_count) {
const std::string username = "User";
for (std::size_t i = 0; i < libs_count; ++i) {
@@ -34,12 +34,11 @@ void load_and_execute(const boost::filesystem::path* libraries, std::size_t libs
//]
int main(int argc, char* argv[]) {
/*<-*/ BOOST_ASSERT(argc >= 2); /*->*/
// argv[1] contains path to our plugin library
/*<-*/ BOOST_ASSERT(argc >= 3); /*->*/
const std::size_t libs_count = 2;
boost::filesystem::path libraries[libs_count] = {
shared_lib_path(argv[1], L"library1"),
shared_lib_path(argv[1], L"library2")
argv[1],
argv[2],
};
load_and_execute(libraries, libs_count);