Files
fn_registry/bash/functions/infra/install_cpp_deps.md
egutierrez 73a4c3a148 feat: add C++ support with ImGui/ImPlot framework and vendor submodules
Añade soporte C++ al registry: vendor submodules (glfw, imgui, implot, tracy),
sistema de build con CMake y toolchains cross-platform, runner C++ en fn CLI,
parser de tests Google Test, y funciones bash para build Linux/Windows.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 23:46:36 +02:00

957 B

name, kind, lang, domain, version, purity, signature, description, tags, uses_functions, uses_types, returns, returns_optional, error_type, imports, tested, tests, test_file_path, file_path, params, output
name kind lang domain version purity signature description tags uses_functions uses_types returns returns_optional error_type imports tested tests test_file_path file_path params output
install_cpp_deps function bash infra 1.0.0 impure install_cpp_deps() -> void Verifica e instala las dependencias de sistema necesarias para compilar C++ con ImGui (cmake, g++, glfw, mesa)
cpp
dependencies
setup
cmake
imgui
false error_go_core
false
bash/functions/infra/install_cpp_deps.sh
Instala paquetes faltantes via apt o confirma que todo esta instalado

install_cpp_deps

Verifica las dependencias necesarias para el build C++:

  • cmake — sistema de build
  • g++ / build-essential — compilador
  • libglfw3-dev — windowing (GLFW)
  • libgl1-mesa-dev — OpenGL headers

Tambien reporta si mingw-w64 esta disponible para cross-compile a Windows.

fn run install_cpp_deps