Platfrom SDK's headers and libraries are newer than VC Toolkit's
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4314 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
8aa498bc5d
commit
49179ea08d
1 changed files with 2 additions and 2 deletions
|
@ -86,8 +86,8 @@ def get_msvctoolkit_paths():
|
|||
except SCons.Util.RegError:
|
||||
raise SCons.Errors.InternalError, "The Platform SDK directory was not found in the registry or in the `MSSdk` environment variable."
|
||||
|
||||
include_path = r'%s\include;%s\include' % (MSToolkitDir, PlatformSDKDir)
|
||||
lib_path = r'%s\lib;%s\lib' % (MSToolkitDir, PlatformSDKDir)
|
||||
include_path = r'%s\include;%s\include' % (PlatformSDKDir, MSToolkitDir)
|
||||
lib_path = r'%s\lib;%s\lib' % (PlatformSDKDir, MSToolkitDir)
|
||||
exe_path = r'%s\bin;%s\bin\win95;%s\bin' % (MSToolkitDir, PlatformSDKDir, PlatformSDKDir)
|
||||
return (include_path, lib_path, exe_path, PlatformSDKDir)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue