blob: 7b53e9abc90004ab1da2d74a9e2542674eb29e1d (
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
|