summaryrefslogtreecommitdiff
path: root/framework/test/typecfg/build.btm
diff options
context:
space:
mode:
Diffstat (limited to 'framework/test/typecfg/build.btm')
-rw-r--r--framework/test/typecfg/build.btm26
1 files changed, 26 insertions, 0 deletions
diff --git a/framework/test/typecfg/build.btm b/framework/test/typecfg/build.btm
new file mode 100644
index 000000000000..f984a1146296
--- /dev/null
+++ b/framework/test/typecfg/build.btm
@@ -0,0 +1,26 @@
+@echo off
+
+pushd
+
+rem Set flag to enable special mechanism of "FilterCache".
+rem This works for windows only! ... this batch too :-)
+set ENVCFLAGS=-DENABLE_GENERATEFILTERCACHE
+
+rem Touch header file ...
+cd ..\..\inc\classes
+attrib -r .\filtercache.hxx
+touch .\filtercache.hxx
+
+rem ... and start new build of library.
+cd ..\..
+call build debug=true
+
+rem Build command line tool too.
+cd test\typecfg
+call dmake debug=true
+
+rem Don't forget to disable build flag!
+unset ENVCFLAGS
+
+popd
+echo on