-
Notifications
You must be signed in to change notification settings - Fork 0
IDE Integrations
MicBur edited this page Jul 26, 2026
·
1 revision
SUCO Grid integrates seamlessly into modern IDEs and build systems.
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.
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.
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