🇬🇧
Styio Developer Manual
English
English
  • Overview
  • Unka's Diary
    • 2024-2025
  • Dev Env
    • Introduction
    • Preparation
      • Windows
      • Linux
      • MacOS
    • LLVM
    • Docker
      • Pull Image
      • Create Container
      • Versions
      • Others
    • Visual Studio Code
    • MSVC
  • Rules
    • 1. Pay only what you need.
  • Milestones
    • Task Board
    • History
    • IF YOU DON'T KNOW WHAT TO DO
  • Possible Optimizations
    • Parse URLs
  • Dark Magic
    • Enable Hyper-V
  • Thinking
    • Add A New AST
    • Decisions
    • Questions
    • Other Questions
    • Value
    • Outcome
Powered by GitBook
On this page
  1. Dev Env

Visual Studio Code

.vscode/task.json
{
  "version": "...",
  "tasks": [
    {
      "type": "cppbuild",
      "label": "...",
      "command": "...",
      "args": [
        "-fdiagnostics-color=always",
        "-g",
        "${workspaceFolder}\\src\\*.cpp",
        "${workspaceFolder}\\src\\include\\StyioUtil\\*.cpp",
        "${workspaceFolder}\\src\\include\\StyioParser\\*.cpp",
        "-o",
        "${fileDirname}\\${fileBasenameNoExtension}.exe"
        ],
        "options": {}
  ]
}
"-g",
"${workspaceFolder}\\src\\*.cpp",
"${workspaceFolder}\\src\\include\\StyioUtil\\*.cpp",
"${workspaceFolder}\\src\\include\\StyioParser\\*.cpp",

PreviousOthersNextMSVC

Last updated 1 year ago