zoukankan      html  css  js  c++  java
  • Qt Pro file

    Qt keys

    • qmake Manual
      • Building Common Project Types
    #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    VERSION = 01.00.00
    
    # change the nama of the binary, if it is build in debug mode
    CONFIG(debug, debug|release) {
         mac: TARGET = $$join(TARGET,,,_debug)
         win32: TARGET = $$join(TARGET,,,d)
    }
    
    #define the directory, where the binary is placed
    RCC_DIR     = ./tmp
    UI_DIR     = ./tmp
    
    CONFIG(debug, debug|release) {
        DESTDIR     = ../debug
        OBJECTS_DIR = ./tmp/debug
        MOC_DIR     = ./tmp/moc/debug
    }
    else {
        DESTDIR     = ../release
        OBJECTS_DIR = ./tmp/release
        MOC_DIR     = ./tmp/moc/release
    }
    
    .
    ├── build-fileTypeAssociateapp-Desktop_Qt_5_7_0_MinGW_32bit-Debug
    │   ├── debug
    │   ├── fileTypeAssociateapp_resource.rc
    │   ├── fileTypeAssociateappd_resource.rc
    │   ├── Makefile
    │   ├── Makefile.Debug
    │   ├── Makefile.Release
    │   ├── release
    │   └── tmp
    │       ├── debug
    │       │   ├── fileTypeAssociateappd_resource_res.o
    │       │   ├── main.o
    │       │   ├── moc_widget.o
    │       │   └── widget.o
    │       ├── moc
    │       │   ├── debug
    │       │   │   └── moc_widget.cpp
    │       │   └── release
    │       └── release
    ├── debug
    │   └── fileTypeAssociateappd.exe
    ├── fileTypeAssociateapp
    │   ├── fileTypeAssociateapp.pro
    │   ├── fileTypeAssociateapp.pro.user
    │   ├── main.cpp
    │   ├── widget.cpp
    │   └── widget.h
    ├── registereditorfiletype
    │   ├── _RegisterFileTypes.gidoc
    │   ├── documentwindow.cpp
    │   ├── documentwindow.h
    │   ├── images
    │   │   ├── copy.png
    │   │   ├── cut.png
    │   │   ├── new.png
    │   │   ├── open.png
    │   │   ├── paste.png
    │   │   └── save.png
    │   ├── license.txt
    │   ├── main.cpp
    │   ├── mainwindow.cpp
    │   ├── mainwindow.h
    │   ├── mdichild.cpp
    │   ├── mdichild.h
    │   ├── RegisterFileTypes.pro
    │   ├── RegisterFileTypes.pro.user
    │   └── RegisterFileTypes.qrc
    └── release
    

  • 相关阅读:
    Redisson 实现分布式锁原理分析
    redis如何避免释放锁时把别人的锁释放掉
    记一次org.springframework.transaction.UnexpectedRollbackException: Transaction rolled back because it has been marked as rollback-only异常
    1.编译chromium
    Win10更新后wireshark无法获取网络接口
    ASIO库使用注意事项
    使用gdb添加断点的几种方式
    select、poll、epoll的比较
    CMakeLists.txt编写常用命令
    Ubuntu下使用linuxdeployqt打包Qt程序
  • 原文地址:https://www.cnblogs.com/zi-xing/p/7041163.html
Copyright © 2011-2022 走看看