Skip to content

Commit

Permalink
Use Ninja instead of Makefiles.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonpryor committed Mar 16, 2021
1 parent 7016a28 commit eb4eab1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-tools/scripts/NativeToolchain.targets
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<PrepareNativeToolchain>call "$(_Vcvarsall)" </PrepareNativeToolchain>
</PropertyGroup>
<PropertyGroup>
<CmakeGenerator Condition=" '$(OS)' != 'Windows_NT' ">-G "Unix Makefiles"</CmakeGenerator>
<CmakeGenerator Condition=" '$(OS)' == 'Windows_NT' ">-G "NMake Makefiles"</CmakeGenerator>
<CmakeGenerator Condition=" '$(OS)' != 'Windows_NT' ">-G "Ninja"</CmakeGenerator>
<CmakeGenerator Condition=" '$(OS)' == 'Windows_NT' ">-G "Ninja"</CmakeGenerator>
</PropertyGroup>
</Target>
</Project>

0 comments on commit eb4eab1

Please sign in to comment.