forked from GPSBabel/gpsbabel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support parallel vtesto from qmake. (GPSBabel#612)
* support parallel vtesto from qmake. also support testo, vtesto with out of source builds. * force check to run.
- Loading branch information
Showing
9 changed files
with
53 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# | ||
# Legacy makefile hook for GPSBabel.pro | ||
# This lets us determine the tests when make is run instead | ||
# of when qmake is run. | ||
# The make parallel execution feature can be used. | ||
# | ||
# GPSBabel requires a reasonably recent version of GNU Make. | ||
# We rely on very few fancy features of make so the exact version | ||
# probably doesn't much matter. GNU Make 3.81 seems a reasonable target. | ||
# | ||
|
||
srcdir = . | ||
builddir = . | ||
|
||
TESTCASES := $(sort $(wildcard $(srcdir)/testo.d/*.test)) | ||
VGLOGS := $(addprefix $(builddir)/testo.d/, $(addsuffix .vglog, $(basename $(notdir $(TESTCASES))))) | ||
|
||
%.vglog: FORCE | ||
@mkdir -p $(builddir)/testo.d | ||
@$(srcdir)/vtesto -l -j $@ $(basename $(notdir $@)) | ||
|
||
# Declaring a target PHONY whose names matches a subdirectory can be | ||
# particularly important, e.g. gui. | ||
.PHONY: all clean check-vtesto | ||
|
||
all: check-vtesto | ||
|
||
clean: | ||
rm -f $(VGLOGS) | ||
|
||
check-vtesto: | ||
@$(MAKE) -f $(srcdir)/Makefile_vtesto $(VGLOGS) | ||
|
||
FORCE: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Cannot open './reference/doesnotexist' for read. Error was 'No such file or directory'. | ||
Cannot open 'doesnotexist' for read. Error was 'No such file or directory'. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Cannot open './reference/doesnotexist' for read. Error was 'The system cannot find the file specified.'. | ||
Cannot open 'doesnotexist' for read. Error was 'The system cannot find the file specified.'. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters