SFML community forums

Help => General => Topic started by: panithadrum on August 05, 2010, 11:10:56 pm

Title: Executables not working on other computers (VS2008)
Post by: panithadrum on August 05, 2010, 11:10:56 pm
Hello, this is not SFML related at all, but everytime I compile a program, it won't work on other computers (if they don't have vs2008 I think).

Quote
This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix the problem


Do I have to configure something in the project properties? Thanks.
Title: Executables not working on other computers (VS2008)
Post by: Laurent on August 05, 2010, 11:25:19 pm
They must install the VC++ redistributable package (http://www.microsoft.com/downloads/details.aspx?FamilyID=9B2DA534-3E03-4391-8A4D-074B9F2BC1BF&displaylang=en).
Title: Executables not working on other computers (VS2008)
Post by: Nexus on August 06, 2010, 12:48:33 am
The MSVC++ redistributable package isn't required to make your application work on other computers. Copying some CRT dll files into the same directory as the exe should be enough (as well as linking statically to the CRT, which isn't easy using SFML).

There have been many threads concerning this topic, just use the search function.
Title: Executables not working on other computers (VS2008)
Post by: panithadrum on August 06, 2010, 07:52:47 am
Thanks for the answers, guys.

I didn't figure out what to search at all. I found the most relevant topic (fool me, I was there before!).

Topic with solution (http://www.sfml-dev.org/forum/viewtopic.php?p=16799#16799)