File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -275,6 +275,7 @@ var exampleSupportedBoards = [];
275275 submitted = false ;
276276 return ;
277277 }
278+ const useCmakeTools = document . getElementById ( 'use-cmake-tools-cb' ) . checked ;
278279
279280 if ( doProjectImport ) {
280281 vscode . postMessage ( {
@@ -293,7 +294,8 @@ var exampleSupportedBoards = [];
293294 pythonPath : pythonPath ,
294295
295296 // debugger selection
296- debugger : 0
297+ debugger : 0 ,
298+ useCmakeTools
297299 }
298300 } ) ;
299301 return ;
@@ -319,7 +321,8 @@ var exampleSupportedBoards = [];
319321 pythonPath : pythonPath ,
320322
321323 // debugger selection
322- debugger : debuggerSelection
324+ debugger : debuggerSelection ,
325+ useCmakeTools
323326 }
324327 } ) ;
325328 return ;
@@ -366,7 +369,6 @@ var exampleSupportedBoards = [];
366369 const cppCodeGen = document . getElementById ( 'cpp-code-gen-cblist' ) . checked ;
367370 const cppRttiCodeGen = document . getElementById ( 'cpp-rtti-code-gen-cblist' ) . checked ;
368371 const cppExceptionsCodeGen = document . getElementById ( 'cpp-exceptions-code-gen-cblist' ) . checked ;
369- const useCmakeTools = document . getElementById ( 'use-cmake-tools-cb' ) . checked ;
370372
371373 //post all data values to the extension
372374 vscode . postMessage ( {
You can’t perform that action at this time.
0 commit comments