8112bfc49f
Previously in the tests/tools directory we build a disable-npots library which was used as an LD_PRELOAD to trick Cogl in to thinking there is no NPOT texture extension. This is a little awkward to use so it seems much simpler to just define a COGL_DEBUG option to disable npot textures.
29 lines
540 B
Makefile
29 lines
540 B
Makefile
SUBDIRS = accessibility data interactive micro-bench
|
|
|
|
if BUILD_TESTS
|
|
SUBDIRS += conform
|
|
endif
|
|
|
|
DIST_SUBDIRS = accessibility data conform interactive micro-bench
|
|
|
|
EXTRA_DIST = README
|
|
|
|
if BUILD_TESTS
|
|
test conform:
|
|
( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
|
|
|
|
test-report full-report:
|
|
( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
|
|
else
|
|
test conform:
|
|
@true
|
|
|
|
test-report full-report:
|
|
@true
|
|
endif # BUILD_TESTS
|
|
|
|
.PHONY: test conform test-report full-report
|
|
|
|
# run make test as part of make check
|
|
check-local: test
|