1

我对 Qt 很陌生,我想做一个简单的图像编辑器。所以我下载了 5.0.1 并且我在 Qt Creator 中,据我所知,它可以让您设计 UI 并从编辑器中构建/运行。

我想实际使用 Visual Studio IDE,因为我觉得它很舒服,所以我假设我需要在我的 Qt 项目上运行 qmake。它输出它已正常退出,但我在任何地方都没有得到任何 .sln 文件或 .proj 文件,我似乎只在调试文件夹中得到一个 vc100.pdb 文件。

# Add more folders to ship with the application, here
folder_01.source = qml/untitled
folder_01.target = qml
DEPLOYMENTFOLDERS = folder_01

# Additional import path used to resolve QML modules in Creator's code model
QML_IMPORT_PATH =

# If your application uses the Qt Mobility libraries, uncomment the following
# lines and add the respective components to the MOBILITY variable.
# CONFIG += mobility
# MOBILITY +=

# The .cpp file which was generated for your project. Feel free to hack it.
SOURCES += main.cpp

# Please do not modify the following two lines. Required for deployment.
include(qtquick2applicationviewer/qtquick2applicationviewer.pri)
qtcAddDeployment()
4

2 回答 2

2

如果你使用不同于 express 的 Visual Studio 版本,你可以安装VS 插件并且你不需要手动运行qmake(或者创建项目,或者创建 sln 和项目,你仍然会使用外部设计器应用程序)

于 2013-02-03T20:28:37.630 回答
1

不要为 qmake 和其他东西烦恼,只需下载 Visual Studio Add-In,它可以让您忘记所有这些问题。您只需要安装其中一个(取决于您使用的 Visual Studio),为您的 Qt 二进制文件选择路径并享受 :) 创建新项目后,所有路径都将被设置,您所需要的只是运行选项“构建项目”

于 2013-02-03T20:29:03.270 回答