4
0
mirror of https://github.com/QuasarApp/qca.git synced 2025-05-13 11:09:34 +00:00
Brad Hards b6b4b13f56 Ensure that return values for failing unit tests aren't hidden by the
"cd .." step.

svn path=/trunk/kdesupport/qca/; revision=478912
2005-11-08 11:12:28 +00:00

21 lines
595 B
Prolog

TEMPLATE = subdirs
SUBDIRS = src tools unittest examples
unix:{
include(conf.pri)
# install
pcfiles.path = $$PREFIX/lib/pkgconfig
pcfiles.files = qca.pc
INSTALLS += pcfiles
# API documentation
#apidox.commands += doxygen && cd apidocs/html && ./installdox -lqt.tag@/home/bradh/build/qt-x11-opensource-4.0.0-rc1-snapshot/doc/html/ && cd ../..
apidox.commands += doxygen && cd apidocs/html && ./installdox -lqt.tag@http://doc.trolltech.com/4.0 && cd ../..
QMAKE_EXTRA_TARGETS += apidox
# unittest
check.commands += cd unittest && make check && cd ..
QMAKE_EXTRA_TARGETS += check
}