Skip to content

IDE Integrations

MicBur edited this page Jul 26, 2026 · 1 revision

๐Ÿ› ๏ธ IDE & Build Tool Integrations

SUCO Grid integrates seamlessly into modern IDEs and build systems.


๐Ÿ”น VS Code Extension (extension/vscode/)

The SUCO Grid VS Code extension surfaces real-time grid metrics directly in the VS Code status bar:

  • Status Bar Display: โšก SUCO: 4w ยท cache 75%
  • CMake Launcher Toggle: One-click action to inject CMAKE_CXX_COMPILER_LAUNCHER=suco-cl++ into .vscode/settings.json.

๐Ÿ”น Visual Studio 2022 VSIX Extension (extension/visualstudio/)

The Visual Studio 2022 VSIX Extension supports CMake Open Folder mode:

  • Options Page: Tools -> Options -> SUCO Grid
  • Launcher Injection: Automatically injects suco-cl++ into MSVC CMake project settings.

๐Ÿ”น CMake Integration (SUCO.cmake)

Include SUCO.cmake in your root CMakeLists.txt:

include(SUCO.cmake)

Or specify the launcher on the command line:

cmake -B build -G Ninja -DCMAKE_CXX_COMPILER_LAUNCHER=suco-cl++
cmake --build build -j16

Clone this wiki locally