File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,8 @@ REM Parse command line parameters
84
84
set CMAKE_GENERATOR = " Eclipse CDT4 - MinGW Makefiles"
85
85
) else if /I " %1 " == " Makefiles" (
86
86
set CMAKE_GENERATOR = " MinGW Makefiles"
87
+ ) else if /I " %1 " == " Ninja" (
88
+ set CMAKE_GENERATOR = " Ninja"
87
89
) else if /I " %1 " == " VSSolution" (
88
90
echo . && echo Error: Creation of VS Solution files is not supported in a MinGW environment.
89
91
echo Please run this command in a [Developer] Command Prompt for Visual Studio.
@@ -107,6 +109,8 @@ REM Parse command line parameters
107
109
set CMAKE_GENERATOR = " Eclipse CDT4 - NMake Makefiles"
108
110
) else if /I " %1 " == " Makefiles" (
109
111
set CMAKE_GENERATOR = " NMake Makefiles"
112
+ ) else if /I " %1 " == " Ninja" (
113
+ set CMAKE_GENERATOR = " Ninja"
110
114
) else if /I " %1 " == " clang" (
111
115
set USE_CLANG_CL = 1
112
116
) else if /I " %1 " == " VSSolution" (
You can’t perform that action at this time.
0 commit comments