Ramilol
Ramilol

Reputation: 3462

visual c++ 2010 debugging problem

When I debug the my game, it works. But if I open my game's exe file that is stored in my project debug file, it shows as being 3 days old. The file is not getting updated.

Any ideas why?

Upvotes: 0

Views: 215

Answers (1)

Chubsdad
Chubsdad

Reputation: 25487

Go to

Project->Properties->Linker->Command Line

and check the value of

/OUT:

field. It probably should be different from the "debug" folder that you are checking.

Ensure that you are checking it appropriately for "Debug" and "Release" configurations

Upvotes: 1

Related Questions