1 // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
2 // Copyright (C) Scilab Enterprises - 2014 - Antoine ELIAS
4 // This file must be used under the terms of the CeCILL.
5 // This source file is licensed as described in the file COPYING, which
6 // you should have received as part of this distribution. The terms
7 // are also available at
8 // http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
10 //=============================================================================
11 function bOK = dlwSetEnvVc12(msCompiler, bWin64)
16 MSVSDir = dlwGetVc12ProPath();
18 MSVSDir = dlwGetVc12ExpressPath();
23 // MS compiler path is wrong
28 IsExpress = (msCompiler == 'msvc120express');
30 VS110COMNTOOLS = MSVSDir + '\Common7\Tools\'
31 if ~setenv('VS120COMNTOOLS', VS110COMNTOOLS) then
36 bOK = dlwSetEnvCommonVc12(MSVSDir, IsExpress, bWin64);
39 //=============================================================================