I have been working very hard on a program for awhile. I now need to send out my .exe to some friends so that they can test my collision code and intuitiveness of the simulation.
However when i give the .exe to friends it does this... I would post a picture but I don't have the credibility yet. Here is the text
PlatformDemoA (1).exe- System Error
The program can't start because MSCR100D.dll is missing from your computer. Try reinstalling the program to fix the problem.
I'm going to assume this is because they don't have VS 2010 on their computers. Is their any way to get this .exe to work on their computers without having Visual Studio? Every place online says to install Visual Studio.
I am predicting that perhaps creating a "release" build instead of a debug might fix this up. However when I try to build one... Suddenly errors show up relating to files I have included. Apparently I am supposed to set the linker to include them in the release builds... I can't find that setting. Here are the errors:
1>------ Build started: Project: PlatformDemoA, Configuration: Release Win32 ------
1> Triangle.cpp
1>Triangle.cpp(2): fatal error C1083: Cannot open include file: 'GLTools.h': No such file or directory
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
I went ahead and copied all of these things into the "release" folders.. That didn't fix things. I guess I really don't understand the linking of files. If you would be willing to I could upload the project folder so you can tell me about how many time I have unnecessarily copied files.
My platform is Windows, and my target platform is also windows.