Removed unused files, fixed tests compilation. (refs #1826)

This commit is contained in:
Roman Bovsunovsky
2010-11-04 19:53:02 +02:00
parent fb341e72a7
commit eb48002f88
12 changed files with 13 additions and 144 deletions
+3 -3
View File
@@ -7,15 +7,15 @@ SUBDIRS = src doc
DOLLAR = $
build_tests.commands = ./unit_tests.sh make build_tests
build_tests.commands = cd src/unit_tests; make build_tests; cd -
build_tests.depends = all
run_tests.commands = ./unit_tests.sh make run_tests
run_tests.commands = cd src/unit_tests; make run_tests; cd -
run_tests.depends = all
tests.depends = run_tests
clean_tests.commands = /usr/bin/env python testclean.py
clean_tests.commands = cd src/unit_tests; make clean_tests; cd -
QMAKE_EXTRA_TARGETS += build_tests run_tests clean_tests tests