1@echo off 2 3pushd 4 5rem Set flag to enable special mechanism of "FilterCache". 6rem This works for windows only! ... this batch too :-) 7set ENVCFLAGS=-DENABLE_GENERATEFILTERCACHE 8 9rem Touch header file ... 10cd ..\..\inc\classes 11attrib -r .\filtercache.hxx 12touch .\filtercache.hxx 13 14rem ... and start new build of library. 15cd ..\.. 16call build debug=true 17 18rem Build command line tool too. 19cd test\typecfg 20call dmake debug=true 21 22rem Don't forget to disable build flag! 23unset ENVCFLAGS 24 25popd 26echo on 27