Advertisement
Guest User

Untitled

a guest
May 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1.  
  2. common_target = common_target
  3. common_target.commands = type $$shell_path($$PWD/foo.in) >> $$PWD/a.h $$escape_expand(\\n\\t) $$escape_expand(\\n\\t)
  4. common_target.commands += type $$shell_path($$PWD/foo.in) >> $$PWD/b.h $$escape_expand(\\n\\t) $$escape_expand(\\n\\t)
  5. common_target.commands += type $$shell_path($$PWD/foo.in) >> $$PWD/c.h $$escape_expand(\\n\\t) $$escape_expand(\\n\\t)
  6. common_target.depends = $$PWD/foo.in
  7.  
  8. a_target.target = $$PWD/a.h
  9. a_target.depends = common_target
  10.  
  11. b_target.target = $$PWD/b.h
  12. b_target.depends = common_target
  13.  
  14. c_target.target = $$PWD/c.h
  15. c_target.depends = common_target
  16.  
  17. PRE_TARGETDEPS += $$a_target.target $$b_target.target $$c_target.target $$common_target.target
  18. QMAKE_EXTRA_TARGETS += a_target b_target c_target common_target
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement