Browse Source

Fixed VC2005 support

experimental/5.2-WITH_DRCP
Dmitry Stogov 20 years ago
parent
commit
c1ba4fc989
  1. 2
      win32/build/config.w32

2
win32/build/config.w32

@ -227,7 +227,7 @@ function add_extra_dirs()
for (i = 0; i < path.length; i++) {
f = FSO.GetAbsolutePathName(path[i]);
if (FSO.FolderExists(f)) {
if (f.indexOf(" ") >= 0) {
if (VCVERS <= 12 && f.indexOf(" ") >= 0) {
ADD_FLAG("LDFLAGS", '/libpath:"\\"' + f + '\\"" ');
} else {
ADD_FLAG("LDFLAGS", '/libpath:"' + f + '" ');

Loading…
Cancel
Save