summaryrefslogtreecommitdiff
path: root/gn/build/build_win.ninja.template
blob: 3d2b572cd92454e2e3a6bbc4875a3901e855a2ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
rule cxx
  command = ninja -t msvc -- $cxx /nologo /showIncludes /FC $includes $cflags /c $in /Fo$out
  description = CXX $out
  deps = msvc

rule alink_thin
  command = ninja -t msvc -- $ar /nologo /ignore:4221 $libflags /OUT:$out $in
  description = LIB $out

rule link
  command = ninja -t msvc -- $ld /nologo $ldflags /PDB:$out.pdb $in $solibs $libs /link /OUT:${out}
  description = LINK $out