mirror of https://github.com/Wilfred/difftastic/
add make rule to fetch qtdeclarative repo and try parsing *.qml files
parent
9716e357fb
commit
4b6f2a210e
@ -0,0 +1,10 @@
|
||||
GIT = git
|
||||
|
||||
.PHONY: all
|
||||
all: qtdeclarative
|
||||
|
||||
.PHONY: qtdeclarative
|
||||
qtdeclarative:
|
||||
[ -d $@ ] || $(GIT) clone git://code.qt.io/qt/qtdeclarative.git $@
|
||||
$(GIT) -C $@ fetch
|
||||
$(GIT) -C $@ reset --hard 3d23912b0e9710dad7ecaf238690e4a7d253534d
|
||||
Loading…
Reference in New Issue