Skip to content

Instantly share code, notes, and snippets.

@fodinabor
Last active August 29, 2015 13:57
Show Gist options
  • Save fodinabor/9409309 to your computer and use it in GitHub Desktop.
Save fodinabor/9409309 to your computer and use it in GitHub Desktop.
Build Polycode on a x64 Windows machine with VC++ 2010 Express - You have to have CMake, Python 2.x & Python-Ply installed
@echo on
set poly=%cd%
mkdir Build
cd Build
cmake -G "Visual Studio 10" ..
C:
cd %programfiles(x86)%\Microsoft Visual Studio 10.0\Common7\IDE\"
VCExpress.exe "%poly%\Dependencies\Build\PolycodeDependencies.sln" /build "Debug|Win32" /project "ALL_BUILD"
VCExpress.exe "%poly%\Dependencies\Build\PolycodeDependencies.sln" /build "Release|Win32" /project "ALL_BUILD"
VCExpress.exe "%poly%\Dependencies\Build\PolycodeDependencies.sln" /build "Debug|Win32" /project "wglext"
VCExpress.exe "%poly%\Dependencies\Build\PolycodeDependencies.sln" /build "Release|Win32" /project "wglext"
VCExpress.exe "%poly%\Dependencies\Build\PolycodeDependencies.sln" /build "Debug|Win32" /project "glext"
VCExpress.exe "%poly%\Dependencies\Build\PolycodeDependencies.sln" /build "Release|Win32" /project "glext"
pause
@echo on
set poly=%cd%
mkdir Build
cd Build
cmake -G "Visual Studio 10" ..
C:
cd %programfiles(x86)%\Microsoft Visual Studio 10.0\Common7\IDE\"
VCExpress.exe "%poly%\Build\Polycode.sln" /build "Debug|Win32" /project "ALL_BUILD"
VCExpress.exe "%poly%\Build\Polycode.sln" /build "Release|Win32" /project "ALL_BUILD"
VCExpress.exe "%poly%\Build\Polycode.sln" /build "Debug|Win32" /project "INSTALL"
VCExpress.exe "%poly%\Build\Polycode.sln" /build "Release|Win32" /project "INSTALL"
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment