Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # CREATE our custom svnbuild target.
  2. svnbuild.commands = cd $$PWD ; flex -o oberon0.cpp oberon0.l ; bison -d -o parser.cpp parser.y
  3. QMAKE_EXTRA_TARGETS += svnbuild
  4.  
  5. # Hook our svnbuild target in between qmake's Makefile update and the actual project target.
  6. svnbuildhook.depends = svnbuild
  7. CONFIG(debug,debug|release):svnbuildhook.target = Makefile
  8. #CONFIG(release,debug|release):svnbuildhook.target = Makefile.Release
  9. QMAKE_EXTRA_TARGETS += svnbuildhook
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement