1
Java / Re: How to build JSFML
« on: August 27, 2012, 10:51:21 am »
After installing WinSDK7.1 with VC++ 2010 compiler selected, and rebuilding "win32" ant target, the "Standalone" sample works!
One issue:
In my registry there's no "HKLM\SOFTWARE\Microsoft\VisualStudio\10.0\Setup\VS" "ProductDir".
Instead, there's "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\10.0\Setup\VC" "ProductDir"=C:\Program Files\Microsoft Visual Studio 10.0\VC\.
So I use:
<target name="my_win32" description="Build the C++ sources for Windows 32 bit.">
<property name="path.vs" value="C:/Program Files/Microsoft Visual Studio 10.0" />
<property name="path.winsdk" value="C:/Program Files/Microsoft SDKs/Windows/v7.1" />
<property name="cl" value="${path.vs}/VC/bin/cl.exe" />
...
One question:
Does the end user need to install VC++ 2010 runtime (to get msvcr100.dll & msvcp100.dll under C:\Windows\System32)? What'll be the supporting Windows environments of JSFML?
One issue:
In my registry there's no "HKLM\SOFTWARE\Microsoft\VisualStudio\10.0\Setup\VS" "ProductDir".
Instead, there's "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\10.0\Setup\VC" "ProductDir"=C:\Program Files\Microsoft Visual Studio 10.0\VC\.
So I use:
<target name="my_win32" description="Build the C++ sources for Windows 32 bit.">
<property name="path.vs" value="C:/Program Files/Microsoft Visual Studio 10.0" />
<property name="path.winsdk" value="C:/Program Files/Microsoft SDKs/Windows/v7.1" />
<property name="cl" value="${path.vs}/VC/bin/cl.exe" />
...
One question:
Does the end user need to install VC++ 2010 runtime (to get msvcr100.dll & msvcp100.dll under C:\Windows\System32)? What'll be the supporting Windows environments of JSFML?