blob: c9373055537c2339b89acc80a68b3edecdf00cde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
@echo off
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat" >nul
cl.exe -nologo -EHsc -std:c++latest -I.. -O2 cdeq_benchmark.cpp >nul
cl.exe -nologo -EHsc -std:c++latest -I.. -O2 clist_benchmark.cpp >nul
cl.exe -nologo -EHsc -std:c++latest -I.. -O2 cmap_benchmark.cpp >nul
cl.exe -nologo -EHsc -std:c++latest -I.. -O2 csmap_benchmark.cpp >nul
cl.exe -nologo -EHsc -std:c++latest -I.. -O2 cvec_benchmark.cpp >nul
del *.obj >nul
cdeq_benchmark.exe VC-19.28
clist_benchmark.exe VC-19.28
cmap_benchmark.exe VC-19.28
csmap_benchmark.exe VC-19.28
cvec_benchmark.exe VC-19.28
|