简体   繁体   English

使用 Qt Creator 静态编译

[英]Statically compile using Qt Creator

I've seen this asked many times, but with no real concrete answer.我已经多次看到这个问题,但没有真正的具体答案。 How do I compile my Qt Creator project with statically linked libraries?如何使用静态链接库编译我的 Qt Creator 项目?

My project is really simple.我的项目真的很简单。 It's just a calculator, so I really don't think it needs to link much stuff.它只是一个计算器,所以我真的不认为它需要链接很多东西。

My CMakeLists.txt file (there really isn't any change to this file, it's just the auto-generated one by Qt Creator):我的 CMakeLists.txt 文件(这个文件真的没有任何变化,它只是 Qt Creator 自动生成的):

cmake_minimum_required(VERSION 3.5)

project(Calculator VERSION 0.1 LANGUAGES CXX)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Widgets)
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets)

set(PROJECT_SOURCES
        main.cpp
        calculator.cpp
        calculator.h
        calculator.ui
)

if(${QT_VERSION_MAJOR} GREATER_EQUAL 6)
    qt_add_executable(Calculator
        MANUAL_FINALIZATION
        ${PROJECT_SOURCES}
    )
# Define target properties for Android with Qt 6 as:
#    set_property(TARGET Calculator APPEND PROPERTY QT_ANDROID_PACKAGE_SOURCE_DIR
#                 ${CMAKE_CURRENT_SOURCE_DIR}/android)
# For more information, see https://doc.qt.io/qt-6/qt-add-executable.html#target-creation
else()
    if(ANDROID)
        add_library(Calculator SHARED
            ${PROJECT_SOURCES}
        )
# Define properties for Android with Qt 5 after find_package() calls as:
#    set(ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/android")
    else()
        add_executable(Calculator
            ${PROJECT_SOURCES}
        )
    endif()
endif()

target_link_libraries(Calculator PRIVATE Qt${QT_VERSION_MAJOR}::Widgets)

set_target_properties(Calculator PROPERTIES
    MACOSX_BUNDLE_GUI_IDENTIFIER my.example.com
    MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
    MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
    MACOSX_BUNDLE TRUE
    WIN32_EXECUTABLE TRUE
)

if(QT_VERSION_MAJOR EQUAL 6)
    qt_finalize_executable(Calculator)
endif()

If you also want the entire project, here it is如果您还想要整个项目,这里是

If this is even important to mention, I want to build two static executables, one for Linux and one for Windows.如果这很重要,我想构建两个静态可执行文件,一个用于 Linux,一个用于 Windows。 What do I need to add to do this?我需要添加什么来做到这一点?

You have to first build the static libraries.您必须首先构建静态库。 Qt doesn't (or at least didn't, last I checked) distribute static libraries. Qt 没有(或者至少没有,上次我检查过)分发静态库。 Be prepared for an exercise when doing this for Windows.为 Windows 执行此操作时,请为练习做好准备。 There's a Wiki, but it's flawed.有一个维基,但它有缺陷。

Also, note that using static Qt libraries is covered under a more restrictive license.另外,请注意,使用静态 Qt 库包含在更严格的许可下。 You'll have to check Qt's site for details on this.您必须查看 Qt 的网站以获取有关此内容的详细信息。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM