1rule cxx 2 command = $cxx /nologo /showIncludes /FC $includes $cflags /c $in /Fo$out 3 description = CXX $out 4 deps = msvc 5 6rule alink_thin 7 command = $ar /nologo /ignore:4221 $libflags /OUT:$out $in 8 description = LIB $out 9 10rule link 11 command = $ld /nologo $ldflags /OUT:$out /PDB:$out.pdb $in $solibs $libs 12 description = LINK $out 13