blob: 5f01db68d0dc6565871afa40f561ed82dfd2fee2 (
plain)
1
2
3
4
5
6
7
8
9
|
REM quick and dirty build file for testing different MSDEVs
setlocal
set myFLAGS= /I../include /I../../mySTL /c /W3 /G6 /O2
cl %myFLAGS% test.cpp
link.exe /out:test.exe ../src/taocrypt.lib test.obj advapi32.lib
|