diff --git a/implementations/Crafter.Build-Project.cpp b/implementations/Crafter.Build-Project.cpp index 6fd996b..384313e 100644 --- a/implementations/Crafter.Build-Project.cpp +++ b/implementations/Crafter.Build-Project.cpp @@ -340,18 +340,10 @@ namespace Crafter { } resultsDep[i] = depResult.errors; - #ifdef CRAFTER_BUILD_CONFIGURATION_TARGET_x86_64_pc_linux_gnu if (depLibSet.insert(outputLib).second) { libsString+=std::format(" -l{}", outputLib); } AddLibsRecursive(libsString, depLibSet, std::get<1>(config.dependencies[i])); - #endif - #if defined(CRAFTER_BUILD_CONFIGURATION_TARGET_x86_64_pc_windows_msvc) || defined(CRAFTER_BUILD_CONFIGURATION_TARGET_x86_64_w64_mingw32) - if (depLibSet.insert(outputLib).second) { - files+=std::format(" {}.lib", outputLib); - } - AddLibsRecursive(files, depLibSet, std::get<1>(config.dependencies[i])); - #endif libMutex.unlock(); }); }