is having th exe linked into the debug invironment slowing it down the progrma comared to a release binary? is it compiled the same way? anyone know or can do quick test?
yes debug binary is always slow due to lot of debugging information contained in the final executable. The whole process is the same, it does link to the libraries too but is fast. In the compile or c++ settings in the VS IDE, you can set what kind of optimization you need for the compilation.