Skip to content

Commit

Permalink
Add Visual Studio 2013 bat file. Requires CMake 2.8.11.2 or newer for…
Browse files Browse the repository at this point in the history
… VS 2013 support.
  • Loading branch information
ensiform committed Oct 22, 2013
1 parent 7e92f2b commit cc234b5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions CreateVisualStudio2013Projects.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
@REM Create OpenJK projects for Visual Studio 2013 using CMake
@echo off
for %%X in (cmake.exe) do (set FOUND=%%~$PATH:X)
if not defined FOUND (
echo CMake was not found on your system. Please make sure you have installed CMake
echo from http://www.cmake.org/ and cmake.exe is installed to your system's PATH
echo environment variable.
echo.
pause
exit /b 1
) else (
echo Found CMake!
)
if not exist build\nul (mkdir build)
pushd build
cmake -G "Visual Studio 12" -D CMAKE_INSTALL_PREFIX=../install ..
popd
pause

0 comments on commit cc234b5

Please sign in to comment.