MSVC 2005 support. Add TEMP_MSVC2005=yes to the build command line.

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4796 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
joostverburg 2006-10-29 11:50:31 +00:00
parent f8713252aa
commit 1247550061
6 changed files with 101 additions and 15 deletions

View file

@ -1,11 +1,19 @@
target = 'Math'
files = Split("""
Source/Math.c
Source/MyMath.c
Source/plugin.c
Source/mathcrt.lib
""")
if ['TEMP_MSVC2005']:
files = Split("""
Source/Math.c
Source/MyMath.c
Source/plugin.c
Source/mathcrtmt.lib
""")
else:
files = Split("""
Source/Math.c
Source/MyMath.c
Source/plugin.c
Source/mathcrt.lib
""")
libs = Split("""
kernel32

Binary file not shown.