diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-03-13 21:25:25 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-03-13 21:25:25 -0700 |
commit | c4eb6bc33d9639ce0840a5fa3cea173c2c816fd1 (patch) | |
tree | 6724e3dbf909f022095cb5a7ad669c15477dfb78 /tools | |
parent | c187089e8725b45144ec668c4bd95b99b28633d5 (diff) | |
parent | af98c75f1ad3338c813aa475aa1b543dd80c138a (diff) |
Merge pull request #109 from nwellnhof/msvc-c99
Compile in plain C mode with MSVC 12.0 or newer
Diffstat (limited to 'tools')
-rw-r--r-- | tools/appveyor-build.bat | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/appveyor-build.bat b/tools/appveyor-build.bat new file mode 100644 index 0000000..73d555b --- /dev/null +++ b/tools/appveyor-build.bat @@ -0,0 +1,13 @@ +@echo off + +if "%MSVC_VERSION%" == "10" goto msvc10 + +call "C:\Program Files (x86)\Microsoft Visual Studio %MSVC_VERSION%.0\VC\vcvarsall.bat" amd64 +goto build + +:msvc10 +call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 + +:build +nmake + |