Reputation: 2509
I have a resource file in the project which need to build/copy to the debug target path for later used.
IDM: Visual Studio 2013
Anyone know how to build/copy the resource file from C++ project to debug target path?
Upvotes: 0
Views: 1002
Reputation: 2509
I found two way to accomplish this:
Build Events: you can add command line in the Pre-Build Event or Post-Build Event
COPY /y $(ProjectDir)resource.orpo $(TargetDir)resource.orpo
Upvotes: 2