diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-12-03 16:26:39 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-12-03 16:26:39 +0000 |
commit | 46c537271d10f3c22406642f5064b8653367d542 (patch) | |
tree | d4fca302dd2d5bec47906595d9fab2479dfe3c57 /install.js | |
parent | edfb74f6e6754e2deac33984d87da134646c0517 (diff) |
BUILD : 1.7.19 (1316) BUGS : 802 NOTES : Added support for MSVC++ 2008 Express (damn names.. gcc-4.4 would be so much shorter)
git-svn-id: svn://svn.anope.org/anope/trunk@1316 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1034 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'install.js')
-rw-r--r-- | install.js | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/install.js b/install.js index 7d6b6fc1f..66e9943d7 100644 --- a/install.js +++ b/install.js @@ -71,7 +71,22 @@ var installerQuestions = [ ]; var buildPackages = [ - + { + 'name' : 'Microsoft Visual Studio 2008 (New PSDK)', + 'libpaths' : [ + 'Program Files\\Microsoft Visual Studio 9.0\\VC\\Lib', + 'Program Files\\Microsoft Platform SDK for Windows Server 2003 R2\\Lib' + ], + 'incpaths' : [ + 'Program Files\\Microsoft Visual Studio 9.0\\VC\\Include', + 'Program Files\\Microsoft Platform SDK for Windows Server 2003 R2\\Include' + ], + 'nmake' : [ + 'Program Files\\Microsoft Platform SDK for Windows Server 2003 R2\\Bin', + ], + 'additional_switches' : [ '/w' ], + 'installedDrive' : 'C' + }, { 'name' : 'Microsoft Visual Studio 2005 (New PSDK)', 'libpaths' : [ |