mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
14 lines
298 B
Makefile
14 lines
298 B
Makefile
# -*- Makefile -*-
|
|
|
|
#
|
|
# Tell the DDK how to generate RunTests.cpp from RunTests.tpl and the tests
|
|
#
|
|
|
|
PYTHON=python
|
|
CXXTESTGEN=$(PYTHON) $(CXXTESTDIR)/bin/cxxtestgen
|
|
|
|
TEST_SUITES=$(SUITESDIR)/*.h
|
|
|
|
RunTests.cpp: RunTests.tpl $(TEST_SUITES)
|
|
$(CXXTESTGEN) -o $@ --template=RunTests.tpl $(TEST_SUITES)
|