2
0
mirror of https://github.com/boostorg/dll.git synced 2026-01-24 05:52:08 +00:00

Many fixes for Windows platform

This commit is contained in:
Antony Polukhin
2015-10-17 15:04:00 +03:00
parent f28c6d260e
commit 256356bb84
7 changed files with 20 additions and 15 deletions

View File

@@ -39,7 +39,7 @@ int main(int argc, char* argv[]) {
std::vector<boost::filesystem::path> libraries;
libraries.reserve(argc - 1);
for (int i = 1; i < argc; ++i) {
if (std::string(argv[i]).find(".lib") == std::string::npos) {
if (std::string(argv[i]).find(".lib") == std::string::npos && std::string(argv[i]).find(".exp") == std::string::npos && std::string(argv[i]).find(".pdb") == std::string::npos) {
libraries.push_back(argv[i]);
}
}