blob: e1a4cbce7cd62a61a5157358e188d60cc82ab2eb (
plain)
1
2
3
4
5
6
7
8
9
|
# 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
|