Joseph Tate wrote:
> 2.  I'd create a batch file that does the renaming, and then set it up 
> to run in a custom build step.  You can set those up through the 
> Custom Build tab in the Project settings dialog.

    # Begin Source File
    
    SOURCE=..\main\config.w32.h.in
    
    # Begin Custom Build
    InputPath=..\main\config.w32.h.in
    
    "..\main\config.w32.h.in" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
        copy ..\main\config.w32.h.in ..\main\config.w32.h > nul 
        
    # End Custom Build
    # End Source File

  should do the trick, but doesn't.

-- 
  Sebastian Bergmann
  http://sebastian-bergmann.de/                 http://phpOpenTracker.de/

  Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to