Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | More corrections to VS 2013 integration. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | vsix2013 |
Files: | files | file ages | folders |
SHA1: |
7a8b0e362b529d54231453046f22e90e |
User & Date: | mistachkin 2013-07-10 21:33:25.856 |
Original Comment: | More corrects to VS 2013 integration. |
Context
2013-07-11
| ||
03:09 | Environment variable names in nmake must be in all uppercase. (check-in: 0328e873f2 user: mistachkin tags: vsix2013) | |
2013-07-10
| ||
21:33 | More corrections to VS 2013 integration. (check-in: 7a8b0e362b user: mistachkin tags: vsix2013) | |
19:53 | Use the VisualStudioVersion variable instead of _MSC_VER. (check-in: 603e9db817 user: mistachkin tags: vsix2013) | |
Changes
Changes to Makefile.msc.
︙ | ︙ | |||
443 444 445 446 447 448 449 | # linker option must be used to mark the executable as runnable # only in the context of an application container. # !IF $(FOR_WINRT)!=0 LTLINKOPTS = $(LTLINKOPTS) /APPCONTAINER !IF "$(VisualStudioVersion)"=="12.0" !IF "$(PLATFORM)"=="x86" | | | | | > > | 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 | # linker option must be used to mark the executable as runnable # only in the context of an application container. # !IF $(FOR_WINRT)!=0 LTLINKOPTS = $(LTLINKOPTS) /APPCONTAINER !IF "$(VisualStudioVersion)"=="12.0" !IF "$(PLATFORM)"=="x86" LTLINKOPTS = $(LTLINKOPTS) "/LIBPATH:$(VCINSTALLDIR)\lib\store" !ELSEIF "$(PLATFORM)"=="x64" LTLINKOPTS = $(LTLINKOPTS) "/LIBPATH:$(VCINSTALLDIR)\lib\store\amd64" !ELSEIF "$(PLATFORM)"=="ARM" LTLINKOPTS = $(LTLINKOPTS) "/LIBPATH:$(VCINSTALLDIR)\lib\store\arm" !ELSE LTLINKOPTS = $(LTLINKOPTS) "/LIBPATH:$(VCINSTALLDIR)\lib\store" !ENDIF !ENDIF !ENDIF # If either debugging or symbols are enabled, enable PDBs. !IF $(DEBUG)>0 || $(SYMBOLS)!=0 LDFLAGS = /DEBUG |
︙ | ︙ |