Reputation: 629
When the project is huge, the cost time for compiling can be several hours? Is it possible to ask Visual Studio to play some sound to alert me the compiling is done.
Upvotes: 3
Views: 144
Reputation: 16217
There is in fact a hidden windows setting just for that. Here's an old link, and here's a current (windows 7) screenshot:
You get there via Control panel/Sound / sounds tab, and scroll down to 'Microsoft Visual Studio'.
Upvotes: 3
Reputation: 7339
Use a Post Build event. It will run after the build step. Attach it to the final executable's project.
Upvotes: 2
Reputation: 54640
Add a custom build step that calls some command line audio player thingy.
Upvotes: 4