summaryrefslogtreecommitdiff
path: root/Binaries/PrepareBoogieZip.bat
diff options
context:
space:
mode:
authorGravatar akashlal <akashl@AKASHL-LT.fareast.corp.microsoft.com>2016-04-15 23:30:34 -0500
committerGravatar akashlal <akashl@AKASHL-LT.fareast.corp.microsoft.com>2016-04-15 23:30:34 -0500
commitae29deff82ad873a3dd541cb2d74d362d26f94c2 (patch)
treedf6267d9145caacd96c4ef4820eaf3debd4ef266 /Binaries/PrepareBoogieZip.bat
parent8ed5dab22d8377924ee6282b83c1b1f8aa8f3573 (diff)
Rename DLLs to non-generic names by prefixing "Boogie". Project names and
namespaces remain the same.
Diffstat (limited to 'Binaries/PrepareBoogieZip.bat')
-rw-r--r--Binaries/PrepareBoogieZip.bat32
1 files changed, 16 insertions, 16 deletions
diff --git a/Binaries/PrepareBoogieZip.bat b/Binaries/PrepareBoogieZip.bat
index 5a1b267f..99a7a0a6 100644
--- a/Binaries/PrepareBoogieZip.bat
+++ b/Binaries/PrepareBoogieZip.bat
@@ -7,22 +7,22 @@ if exist %DEST_DIR% del /q %DEST_DIR%\*
if not exist %DEST_DIR% mkdir %DEST_DIR%
for %%f in (
- AbsInt.dll AbsInt.pdb
- Basetypes.dll Basetypes.pdb
- Boogie.exe Boogie.pdb
- BVD.exe BVD.pdb
- CodeContractsExtender.dll CodeContractsExtender.pdb
- Core.dll Core.pdb
- Doomed.dll Doomed.pdb
- Graph.dll Graph.pdb
- Houdini.dll Houdini.pdb
- Model.dll Model.pdb
- ParserHelper.dll ParserHelper.pdb
- Predication.dll Predication.pdb
- Provers.SMTLib.dll Provers.SMTLib.pdb
- UnivBackPred2.smt UnivBackPred2.smt2
- VCExpr.dll VCExpr.pdb
- VCGeneration.dll VCGeneration.pdb
+ BoogieAbsInt.dll BoogieAbsInt.pdb
+ BoogieBasetypes.dll BoogieBasetypes.pdb
+ Boogie.exe Boogie.pdb
+ BVD.exe BVD.pdb
+ BoogieCodeContractsExtender.dll BoogieCodeContractsExtender.pdb
+ BoogieCore.dll BoogieCore.pdb
+ BoogieDoomed.dll BoogieDoomed.pdb
+ BoogieGraph.dll BoogieGraph.pdb
+ BoogieHoudini.dll BoogieHoudini.pdb
+ BoogieModel.dll BoogieModel.pdb
+ BoogieParserHelper.dll BoogieParserHelper.pdb
+ BoogiePredication.dll BoogiePredication.pdb
+ Provers.SMTLib.dll Provers.SMTLib.pdb
+ UnivBackPred2.smt UnivBackPred2.smt2
+ BoogieVCExpr.dll BoogieVCExpr.pdb
+ BoogieVCGeneration.dll BoogieVCGeneration.pdb
) do (
copy %%f %DEST_DIR%
)