summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--win32/build/projectgen.js13
1 files changed, 7 insertions, 6 deletions
diff --git a/win32/build/projectgen.js b/win32/build/projectgen.js
index edec4dde39..5d7fed601a 100644
--- a/win32/build/projectgen.js
+++ b/win32/build/projectgen.js
@@ -155,13 +155,14 @@ function generate_dsp_filelist(ext, ext_dir, files)
}
DSP_HEADERS = DSP_HEADERS.concat(libheaders.split(" "));
- }
- sources = newarr[1].replace(/\\/g, "");
- sources = sources.replace(ws, " ");
- path = path ? " ./" + path + "/" : " ./";
- sources = sources.replace(/ /g, path);
- DSP_SOURCES = DSP_SOURCES.concat(sources.split(" "));
+ sources = newarr[1].replace(/\\/g, "");
+ sources = sources.replace(ws, " ");
+ path = path ? " ./" + path + "/" : " ./";
+ sources = sources.replace(/ /g, path);
+
+ DSP_SOURCES = DSP_SOURCES.concat(sources.split(" "));
+ }
}
}