From FGL Project Explorer, you can compile and recompile separate files.
Step 1. Find the file in FGL Project Explorer, right-click it and select Compile:
The Terminal tab of the Panel will display the details of compilation progress:
At successful compilation, there will be no warnings or errors. The compiled file will be displayed as green in FGL Project Explorer, with a green check mark sign on it:
At failed compilation, you will receive the following indicators:
From this tab, you can quickly get to the error(s) in code. To do that, click the line with message of the error. VS Code will open the file and highlight the exact line that has that error:
If you made changes to your file, you will need to recompile it. To do that, follow these steps:
Step 1. Find the file in FGL Project Explorer, right-click it and select Recompile:
The Terminal tab of the Panel will display the details of recompilation progress. LVSCE will clean the output files that are associated with this program, and then recompile the program:
At successful recompilation, there will be no warnings or errors. Recompiled file will be displayed as green in FGL Project Explorer, with a green check mark sign on it:
At failed recompilation, you will receive the following indicators:
From this tab, you can quickly get to the error(s) in code. To do that, click the line with message of the error. VS Code will open the file and highlight the exact line that has that error:
See next: Debugging in LVSCE