| name | qt-cmake-project-generator |
| description | Generate CMake-based Qt project with proper module dependencies, cross-compilation support, and modern Qt6 configuration |
| allowed-tools | Read, Write, Edit, Bash, Glob, Grep |
| tags | ["qt","cmake","cpp","cross-platform","build"] |
| graph | {"domains":["domain:software-engineering"],"specializations":["specialization:desktop-development"],"skillAreas":["skill-area:desktop-ui-frameworks","skill-area:cross-platform-desktop"],"roles":["role:desktop-developer","role:fullstack-engineer"],"workflows":["workflow:feature-development","workflow:release-management"]} |
qt-cmake-project-generator
Generate CMake-based Qt project configurations with proper module dependencies and cross-compilation support. This skill handles Qt6 CMake integration, module discovery, and platform-specific build configurations.
Capabilities
- Generate modern CMake configuration for Qt6 projects
- Configure Qt module dependencies (Core, Widgets, Quick, Network, etc.)
- Set up cross-compilation toolchains
- Configure vcpkg/Conan package management integration
- Generate platform-specific build configurations
- Set up Qt deployment scripts (windeployqt, macdeployqt)
- Configure static vs dynamic linking
- Generate CMake presets for development and CI
Input Schema
{
"type": "object",
"properties": {
"projectPath": {
"type": "string",
"description": "Path to create/update the Qt project"
},
"projectName": {
"type": "string",
"description": "Project name"
},
"qtVersion": {
"type": "string",
"default": "6.6",
"description": "Target Qt version"
},
"qtModules": {
"type": "array",
"items":
Output Schema
{
"type": "object",
"properties": {
"success": { "type": "boolean" },
"files": {
"type": "array",
"items": {
"type": "object",
"properties": {
"path": { "type": "string" },
"description": { "type": "string" }
}
}
},
"buildCommands": {
"type": "object"
Generated CMakeLists.txt Example
cmake_minimum_required(VERSION 3.21)
project(MyQtApp VERSION 1.0.0 LANGUAGES CXX)
# C++ Standard
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Qt Configuration
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
# Find Qt packages
find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets)
# Source files
set(SOURCES
src/main.cpp
src/mainwindow.cpp
src/mainwindow.h
src/mainwindow.ui
)
# Resources
set(RESOURCES
resources/resources.qrc
)
# Create executable
qt_add_executable(${PROJECT_NAME}
${SOURCES}
${RESOURCES}
)
# Link Qt libraries
target_link_libraries(${PROJECT_NAME} PRIVATE
Qt6::Core
Qt6::Gui
Qt6::Widgets
)
# Platform-specific settings
if(WIN32)
set_target_properties(${PROJECT_NAME} PROPERTIES
WIN32_EXECUTABLE TRUE
)
elseif(APPLE)
set_target_properties(${PROJECT_NAME} PROPERTIES
MACOSX_BUNDLE TRUE
MACOSX_BUNDLE_INFO_PLIST "${CMAKE_SOURCE_DIR}/platform/macos/Info.plist"
)
endif()
# Installation
install(TARGETS ${PROJECT_NAME}
BUNDLE DESTINATION .
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)
# Qt deployment
qt_generate_deploy_app_script(
TARGET ${PROJECT_NAME}
OUTPUT_SCRIPT deploy_script
NO_UNSUPPORTED_PLATFORM_ERROR
)
install(SCRIPT ${deploy_script})
CMake Presets
{
"version": 6,
"configurePresets": [
{
"name": "default",
"displayName": "Default",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "release",
"inherits": "default",
"displayName": "Release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "windows-msvc"
Cross-Compilation Toolchain
# toolchain-linux-aarch64.cmake
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR aarch64)
set(CMAKE_SYSROOT /opt/sysroots/aarch64-linux-gnu)
set(CMAKE_C_COMPILER aarch64-linux-gnu-gcc)
set(CMAKE_CXX_COMPILER aarch64-linux-gnu-g++)
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
Package Manager Integration
vcpkg
# CMakeLists.txt
if(DEFINED ENV{VCPKG_ROOT})
set(CMAKE_TOOLCHAIN_FILE "$ENV{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake")
endif()
Conan
from conan import ConanFile
from conan.tools.cmake import cmake_layout
class MyQtAppConan(ConanFile):
settings = "os", "compiler", "build_type", "arch"
generators = "CMakeToolchain", "CMakeDeps"
def requirements(self):
self.requires("qt/6.6.0")
def layout(self):
cmake_layout(self)
Best Practices
- Use qt_add_executable: Preferred over add_executable for Qt6
- Enable AUTOMOC/AUTOUIC/AUTORCC: Automatic meta-object compilation
- Use CMake Presets: Simplify configuration for different environments
- Version your Qt requirement:
find_package(Qt6 6.4 REQUIRED ...)
- Use modern CMake: target_* commands over global settings
- Generate deploy scripts: Use Qt's deployment tools
Related Skills
qt-qml-component-generator - QML component creation
qt-installer-framework-config - Installer configuration
qt-test-fixture-generator - Test setup
Related Agents
qt-cpp-specialist - Qt/C++ expertise
desktop-ci-architect - CI/CD for Qt projects