SFML community forums

Help => General => Topic started by: lohr on June 26, 2008, 09:54:25 am

Title: [Solved] Executable isnt running on other systems
Post by: lohr on June 26, 2008, 09:54:25 am
Hello,

I am using VS Prof 2005 and i have built a little game.
Now I compiled and linked it, and it runs nice on my developer machine.

But if I show it to a friend on a different PC there comes an error msg "...Application could not be started, because the applicationconfiguration failed...".

How could i fix this?
I read very much at google but nothing really helped (which dll, i need on the target machine or static linking?)

Thank you very much!
Title: [Solved] Executable isnt running on other systems
Post by: Laurent on June 26, 2008, 10:49:48 am
You need to install the VC++ redistributables (http://www.microsoft.com/downloads/details.aspx?familyid=32bc1bee-a3f9-4c13-9c99-220b62a191ee&displaylang=en) on the other machine.

Also, make sure you're not distributing a debug build of your application.
Title: [Solved] Executable isnt running on other systems
Post by: lohr on June 26, 2008, 04:49:58 pm
Thank you very much :)