gpt4 book ai didi

c++ - CMake 与 Qt3d 用于 Qt5?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:31:43 27 4
gpt4 key购买 nike

我已经从 ubuntu-developers 存储库(我在 Ubuntu 13.04 下)安装了 Qt5 和 Qt3d,我想用 CMake 编译一个非常简单的应用程序(我的版本是 2.8.10.1)。 Qt helloworld 的工作 CMakeLists.txt 如下:

cmake_minimum_required(VERSION 2.8.8)

project(testproject)

# Find includes in corresponding build directories
set(CMAKE_INCLUDE_CURRENT_DIR ON)
# Instruct CMake to run moc automatically when needed.
set(CMAKE_AUTOMOC ON)

# Find the QtWidgets library
find_package(Qt5Widgets)

# Tell CMake to create the helloworld executable
add_executable(helloworld helloworld.cpp)

# Use the Widgets module from Qt 5.
qt5_use_modules(helloworld Widgets)

但是像这个例子这样的基本 Qt3d 程序的 CMakeLists.txt 是什么: https://gitorious.org/wiki-sources/wiki-sources/trees/master/qt3d/glview

最佳答案

Qt3d 是一个常规的 Qt 模块,就像 Qt Widgets 一样。所以你应该把 Qt3d 添加到你的项目中,就像你为 Widgets 做的那样:

cmake_minimum_required(VERSION 2.8.8)
project(testproject)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
find_package(Qt5Widgets)
find_package(Qt53D)
add_executable(helloworld teapotview.cpp main.cpp)
qt5_use_modules(helloworld Widgets 3D)

我已经用 Teapot 示例测试了这个 CMakeLists.txt。可用here .请注意,您发布的示例是为 Qt4 编写的,不适用于 Qt5。

我使用了 Ubuntu 13.04 和主存储库中可用的 qt3d5-dev 包。

关于c++ - CMake 与 Qt3d 用于 Qt5?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16643119/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com