Advertisement
Guest User

Untitled

a guest
May 28th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. @echo off
  2. call "%VS100COMNTOOLS%vsvars32.bat"
  3. IF EXIST DF_PATH.txt SET /P _DF_PATH=<DF_PATH.txt
  4. IF NOT EXIST DF_PATH.txt SET _DF_PATH=%CD%\DF
  5. mkdir VC2010
  6. cd VC2010
  7. cmake ..\.. -G"Visual Studio 10" -DCMAKE_INSTALL_PREFIX="%_DF_PATH%" -DBUILD_DEVEL=0 -DBUILD_DEV_PLUGINS=0 -DBUILD_DOCS=1 -DBUILD_STONESENSE=1 || goto :end
  8. msbuild /m /p:Platform=Win32 /p:Configuration=RelWithDebInfo ALL_BUILD.vcxproj || goto :end
  9. msbuild /m /p:Platform=Win32 /p:Configuration=Release ALL_BUILD.vcxproj || goto :end
  10. msbuild /m /p:Platform=Win32 /p:Configuration=RelWithDebInfo INSTALL.vcxproj || goto :end
  11. :end
  12. cd ..
  13. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement