This commit is contained in:
Jorijn van der Graaf 2025-11-09 20:29:30 +01:00
commit 89302a5534
2 changed files with 1 additions and 3 deletions

View file

@ -208,7 +208,7 @@ namespace Crafter {
Project project = Project::LoadFromJSON(config.dependencies[i].path);
for(Configuration& depConfig : project.configurations) {
if(depConfig.name == config.dependencies[i].configuration){
fs::path depBuildDir = fs::path(config.dependencies[i].path).parent_path()/depConfig.buildDir;
fs::path depBuildDir = fs::path(config.dependencies[i].path).parent_path()/project.buildDir/depConfig.name;
project.Build(depConfig, pcmDir, binDir, depBuildDir, project.name);
libMutex.lock();
if (depLibSet.insert(project.name).second) {