2019-07-03 03:59:52 +10:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
# pdb won't be usable with entr,
|
|
|
|
# use https://pypi.org/project/remote-pdb/ instead
|
|
|
|
|
|
|
|
# no_embedded (resources) is used to speed up the compilation
|
|
|
|
|
|
|
|
find src harmonyqml.pro -type f |
|
|
|
|
entr -cdnr sh -c \
|
2019-07-06 09:09:08 +10:00
|
|
|
'qmake CONFIG+="dev no_embedded" && make && ./harmonyqml --debug'
|