CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 2007
    Posts
    437

    Exclamation Custom Build Not happen every time.

    we have fresh code in VC++ which has some custom build event( which has make file to generate some header files), and after building the project. if i remove the newly created header files as well as debug folder and try to again build the project, project does not perform custom build event, it directly start compiling, so we got some error.

    but without deleting if i use clean project, it works perfectly. so what the clean process is doing...

    any help is appreciated...
    ashu
    always use code tag

  2. #2
    Join Date
    Feb 2009
    Location
    India
    Posts
    444

    Re: Custom Build Not happen every time.

    Clean deletes the temporary files like .OBJ from the debug folder.
    You will probably need to do a rebuild after you delete the header files.
    «_Superman
    I love work. It gives me something to do between weekends.

    Microsoft MVP (Visual C++)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured