I\'m not very familiar with post-build events, so I\'m a little confused as to what\'s going wrong with my program. When compiling in visual studio 2010, I get the following
I had the same problem. You could also check which way the slash is pointing. For me it worked to use backslash, instead of forward slash. Example
xcopy /s /y "C:\SFML\bin\*.dll" "$(OutDir)"
Instead of:
xcopy /s /y "C:/SFML/bin/*.dll" "$(OutDir)"