How to execute shell command after compile finished from .pro in QT?

后端 未结 4 720
醉话见心
醉话见心 2020-12-01 12:40

What changes must I make to the .pro file if I want to execute chmod command, execute the output binary file, or do some other operations.

4条回答
  •  Happy的楠姐
    2020-12-01 13:10

    I had a similar problem. I wanted a special tool (versioner) to run over the code every time the Makefile was executed. Here's the solution:

    (to be read in the Qmake Manual, Configuring qmake's Environment, Section: Customizing Makefile Output)

    Create you own Makefile target. Specify the command etc.

    mytarget.target = .buildfile
    mytarget.commands = touch $$mytarget.target
    
    QMAKE_EXTRA_TARGETS += mytarget
    

    This way, you have an extra target you can call with make mytarget for example. If you want to tie it together to the actual buildtarget you'll have to add:

    POST_TARGETDEPS += mytarget
    

    Hope that helps.

    Best regards
    D

提交回复
热议问题