Dependencias de terceros con FetchContent

Descubre cómo gestionar dependencias con FetchContent de CMake: integración de repositorios GitHub y tar.gz precompilados, compatibilidad con proyectos legacy, buenas prácticas y despliegue seguro.

26 ago 2025 • 2 min read • Q2BSTUDIO Team

Inteligencia-Artificial-

Bienvenido al siguiente pikoTutorial sobre FetchContent y la gestión de dependencias de terceros con CMake. En este artículo explicamos cómo integrar bibliotecas externas desde repositorios GitHub o paquetes precompilados usando el módulo FetchContent de CMake, manteniendo compatibilidad con proyectos legacy y minimizando fricción al incorporar soluciones de terceros.

FetchContent no es un gestor de paquetes completo sino un módulo que se integra de forma nativa con CMake y aprovecha formatos ya habituales como repositorios Git o archivos tar.gz. Esto facilita añadir dependencias a proyectos existentes sin imponer formatos propietarios y acelera la adopción en entornos donde el tiempo de compilación o la infraestructura lo requieren.

Caso 1 Dependencia como repositorio GitHub Ejemplo práctico usando FetchContent para clonar un repositorio Git cmake_minimum_required(VERSION 3.28); project(FetchContentExample); include(FetchContent); FetchContent_Declare( ComlintCpp GIT_REPOSITORY https://github.com/pasparsw/comlint_cpp GIT_TAG v0.3 ); FetchContent_MakeAvailable(ComlintCpp); add_executable(${PROJECT_NAME} main.cpp); target_link_libraries(${PROJECT_NAME} PRIVATE ComlintCpp)

Caso 2 Dependencia como paquete release precompilado Cuando no es viable compilar desde fuente FetchContent puede descargar un tar gz con headers y librerías compartidas cmake_minimum_required(VERSION 3.28); project(FetchContentExample); include(FetchContent); FetchContent_Declare( ComlintCpp URL https://github.com/pasparsw/comlint_cpp/releases/download/v0.3/comlint_cpp_v0.3.tar.gz ); FetchContent_MakeAvailable(ComlintCpp); add_executable(${PROJECT_NAME} main.cpp); target_include_directories(${PROJECT_NAME} PRIVATE ${comlintcpp_SOURCE_DIR}/include); target_link_libraries(${PROJECT_NAME} PRIVATE ${comlintcpp_SOURCE_DIR}/libComlintCpp.so)

Buenas prácticas y recomendaciones Generar targets consumibles y con nombres consistentes facilita la integración de FetchContent_MakeAvailable en proyectos grandes Reutilizar variables SOURCE_DIR y BINARY_DIR exportadas por FetchContent para localizar headers y librerías Evitar recompilaciones innecesarias usando opciones de configuración y caches cuando la dependencia admite builds separados Considerar combinaciones con find_package para instalaciones del sistema o paquetes binarios y documentar claramente cómo sustituir el uso de FetchContent por una dependencia instalada cuando sea necesario

Consejos de despliegue En entornos corporativos se recomienda versionar y firmar los paquetes de release almacenar artefactos en repositorios internos y definir políticas de seguridad para la descarga de dependencias Si trabajas con servicios cloud considera integrar pipelines que utilicen repositorios privados en AWS o Azure para acelerar CI CD y mantener cumplimiento

Sobre Q2BSTUDIO Q2BSTUDIO es una empresa de desarrollo de software especializada en aplicaciones a medida y software a medida. Ofrecemos servicios profesionales en inteligencia artificial ia para empresas diseño e implementación de agentes IA ciberseguridad y servicios cloud aws y azure. También brindamos servicios inteligencia de negocio y soluciones con power bi para extraer valor de tus datos. Nuestra experiencia abarca desde migraciones y seguridad hasta la creación de aplicaciones a medida y soluciones de inteligencia artificial que mejoran procesos y eficiencia. Si buscas un partner para proyectos de software a medida o iniciativas de inteligencia artificial y ciberseguridad Q2BSTUDIO combina experiencia técnica y enfoque empresarial para entregar resultados escalables y seguros

A BREAK?

Play for a moment before you go

OUR SERVICES

How we can help you

Artificial intelligence

AI agents, chatbots, and intelligent assistants that automate tasks and serve your customers 24/7 to improve the efficiency of your business.

More info

Software Development

Web, mobile, and desktop applications, intranets, e-commerce, SaaS, and management platforms designed for your company's specific needs.

More info

Cloud services

Migration, infrastructure, managed hosting, high availability, and security on Microsoft Azure and Amazon Web Services to help your business scale without limits.

More info

Cybersecurity and pentesting

Security audits, penetration testing and protection of applications, data and infrastructure on-premise and cloud, with ethical hacking and regulatory compliance.

More info

Business Intelligence

Dashboards and data analysis with Power BI: we integrate your sources, design dashboards and KPIs and turn your data into decisions.

More info

Process automation

We automate repetitive tasks and connect your applications with n8n, Power Automate, Make, and RPA, eliminating manual work and increasing productivity.

More info

Training for Companies

We train your teams in technology with criteria: web development, databases, Git, best practices and security, automation with n8n, artificial intelligence for companies and creation of AI solutions with Azure AI Foundry.

More info

Code Auditing

We audit the code that you, your team or an AI create: we tell you what is good and what to improve, we secure it and make it ready for production, web or app.

More info

AI Image Generation

We create for you the images that your business needs with artificial intelligence: product, networks, advertising, illustration and avatars. You tell us what you want and we deliver it ready to use.

More info

AI Video Generation

We create videos with artificial intelligence for you: promotional, networking, virtual presenters, dubbing and animations. You tell us the idea and we will deliver it assembled and ready to publish.

More info

AI Conversational Avatars

We create conversational avatars with AI – digital humans with a face and voice – that serve your customers and teams with the knowledge of your company, on your website, interactive monitors, WhatsApp or Teams.

More info

Online Marketing and AI

Google Ads, Meta Ads, LinkedIn Ads and AI Engine Positioning (GEO/AEO): we attract customers and make your brand appear where they search for you, also on ChatGPT, Gemini and Perplexity.

More info

Do you have a project in mind?

Tell us your vision and we'll turn it into a software solution. Whatever the scope, we make your idea real.

Live Chat