qt qmake配置 clean
时间: 2023-07-12 08:45:01 浏览: 210
如果你想使用 qmake 来清除你的项目构建目录,可以使用以下命令:
```
qmake -recursive -config <CONFIG> <path-to-pro-file>
make clean
```
其中,`<CONFIG>` 是你想要清除的构建配置,例如 Debug 或 Release。`<path-to-pro-file>` 是你的项目文件的路径。
此外,你也可以使用以下命令直接清除构建目录:
```
make distclean
```
这会删除构建目录及其子目录中生成的所有文件,包括 Makefile 和 object 文件等。
相关问题
qt5.14.2配置msvc2017 64bit
Qt 5.14.2是一个跨平台的C++应用程序框架,用于构建图形用户界面(GUI)和网络应用。在Windows上使用MSVC (Microsoft Visual Studio Compiler) 配置64位版本,需要完成以下步骤:
1. **下载和安装Visual Studio**:
- 访问Microsoft官网下载Visual Studio 2017 Community Edition,确保选择适用于64位系统的版本。
2. **安装MSVC工具**:
- 打开Visual Studio并安装C++工具集。在安装过程中,选择"勾选适用于桌面应用的C++支持"。
3. **获取Qt SDK**:
- 访问Qt官方网站,下载Qt 5.14.2 for MSVC的SDK,选择“Visual C++ 2017”作为编译器。
4. **配置Qt环境**:
- 安装完成后,解压Qt安装包到一个目录,比如`C:\Qt\5.14.2\msvc2017_64`。
- 设置系统环境变量`QTDIR`指向Qt安装路径。
5. **配置VS项目设置**:
- 打开Visual Studio,新建一个Qt Widgets Application项目。
- 右键点击项目的属性(`Properties`) -> C/C++ -> General -> Additional Include Directories,添加`<QTDIR>\include`。
- 同样,在Linker -> General -> Additional Library Directories里,添加`<QTDIR>\lib`,以及`<QTDIR>\plugins`(如果需要动态链接插件)。
6. **添加Qt库链接**:
- 在Linker -> Input -> Additional Dependencies中,输入`Qt5Widgets.lib`, `Qt5Core.lib`, 和其他必要的库名。
7. **配置构建脚本**:
- 如果你需要使用Qt Creator,可以创建一个新的.pro文件,并配置它来使用MSVC 2017。例如:
```
TEMPLATE = app
QT += widgets core
SOURCES += main.cpp
win32 {
target.path = bin
target.files = $$TARGET
!win32:isEmpty(target.path):postclean.commands = del "$$target.path/$$TARGET"
}
win32:QMAKE_POST_LINK -= copy_qtlib
QMAKE_LFLAGS += /NODEFAULTLIB:LIBCMT
```
8. **构建项目**:
- 现在可以尝试编译项目了,如果一切顺利,应该可以在指定的bin目录下看到生成的可执行文件。
Command line: -prefix /home/liuyh/workspace/qt5.14.2-arm -opensource -confirm-license -release -strip -shared -xplatform linux-arm-gnueabi-g++ -optimized-qmake -c++std c++11 --rpath=no -pch -skip qt3d -skip qtactiveqt -skip qtandroidextras -skip qtcanvas3d -skip qtconnectivity -skip qtdatavis3d -skip qtdoc -skip qtgamepad -skip qtlocation -skip qtmacextras -skip qtnetworkauth -skip qtpurchasing -skip qtremoteobjects -skip qtscript -skip qtscxml -skip qtsensors -skip qtspeech -skip qtsvg -skip qttools -skip qttranslations -skip qtwayland -skip qtwebengine -skip qtwebview -skip qtwinextras -skip qtx11extras -skip qtxmlpatterns -make libs -make examples -nomake tools -nomake tests -gui -widgets -dbus-runtime --glib=no --iconv=no --pcre=qt --zlib=qt -no-openssl --freetype=qt --harfbuzz=qt -no-opengl -linuxfb --xcb=no -tslib --libpng=qt --libjpeg=qt --sqlite=qt -plugin-sql-sqlite -I/opt/tslib/include -L/opt/tslib/lib -recheck-all executing config test machineTuple + arm-linux-gnueabi-g++ -dumpmachine > sh: 1: arm-linux-gnueabi-g++: not found test config.qtbase.tests.machineTuple FAILED executing config test verifyspec + cd /home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/config.tests/verifyspec && /home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/qtbase/bin/qmake "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" 'QMAKE_LIBDIR += /opt/tslib/lib' 'INCLUDEPATH += /opt/tslib/include' -early "CONFIG += cross_compile" /home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/qtbase/config.tests/verifyspec + cd /home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/config.tests/verifyspec && MAKEFLAGS= /usr/bin/make clean && MAKEFLAGS= /usr/bin/make > rm -f verifyspec.o > rm -f *~ core *.core > arm-linux-gnueabi-g++ -c -O2 -march=armv7-a -mtune=cortex-a7 -mfpu=neon -mfloat-abi=hard -O2 -march=armv7-a -mtune=cortex-a7 -mfpu=neon -mfloat-abi=hard -pipe -O2 -w -fPIC -I/home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/qtbase/config.tests/verifyspec -I. -I/opt/tslib/include -I/home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/qtbase/mkspecs/linux-arm-gnueabi-g++ -o verifyspec.o /home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/qtbase/config.tests/verifyspec/verifyspec.cpp > make:arm-linux-gnueabi-g++:命令未找到 > make: *** [Makefile:172:verifyspec.o] 错误 127
这个错误可能是由于缺少相关的编译器或者库文件,或者是由于目标平台设置不正确导致的。你需要检查你的编译环境和目标平台设置,确保它们都是正确的。另外,根据错误提示,arm-linux-gnueabi-g++命令未找到,可能是缺少相关工具链导致的。你需要安装适合的交叉编译工具链来解决这个问题。同时,你也可以尝试使用其他目标平台进行编译,看是否可以解决这个问题。
阅读全文