Compiling & Building Applications

// makefile Integration

TermStudio automatically parses makefile or CMakeLists.txt in your project's root folder. Pressing F5 will compile using the default make target.

// Custom Task Configurations

Configure custom tasks in .termstudio/tasks.json to compile non-standard scripts (like building C# or executing TypeScript transpilations):

{
  "tasks": [
    {
      "name": "NPM Build",
      "command": "npm run build",
      "group": "build"
    }
  ]
}

// Parsing Compiler Outputs

Build outputs display in the bottom compilation drawer. TermStudio parses error messages (like GCC line/column syntax errors) and makes them clickable, jumping you directly to the offending line of code.