comparison src/share/tools/ProjectCreator/WinGammaPlatformVC10.java @ 17309:3bde3e643528

Windows build: disable BrowseInformation for fastdebug and debug builds. The bscmake.exe tool for the BrowseInformation feature is not available in newer Windows SDK versions.
author Christian Humer <christian.humer@gmail.com>
date Wed, 01 Oct 2014 19:45:05 +0200
parents 4ca6dc0799b6
children 7848fc12602b
comparison
equal deleted inserted replaced
17308:8dcb64d6e987 17309:3bde3e643528
350 Vector rv = new Vector(); 350 Vector rv = new Vector();
351 351
352 // Set /On option 352 // Set /On option
353 addAttr(rv, "Optimization", opt); 353 addAttr(rv, "Optimization", opt);
354 // Set /FR option. 354 // Set /FR option.
355 addAttr(rv, "BrowseInformation", "true"); 355 addAttr(rv, "BrowseInformation", "false");
356 addAttr(rv, "BrowseInformationFile", "$(IntDir)");
357 // Set /MD option. 356 // Set /MD option.
358 addAttr(rv, "RuntimeLibrary", "MultiThreadedDLL"); 357 addAttr(rv, "RuntimeLibrary", "MultiThreadedDLL");
359 // Set /Oy- option 358 // Set /Oy- option
360 addAttr(rv, "OmitFramePointers", "false"); 359 addAttr(rv, "OmitFramePointers", "false");
361 360