forked from qt-creator/qt-creator
Change-Id: If52505dbc95ee48ac3467cdfbbea91629c11089c Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
16 lines
429 B
Plaintext
16 lines
429 B
Plaintext
# HOWTO COMPILE
|
|
|
|
# go to your build folder of Qt Creator
|
|
cd /path/to/qtc-build
|
|
|
|
# create and enter build directory for valgrind tests
|
|
mkdir valgrind-test
|
|
cd valgrind-test
|
|
|
|
# make library paths known to ldconfig
|
|
export LD_LIBRARY_PATH=/path/to/qtc-build/lib/qtcreator:/path/to/qtc-build/lib/qtcreator/plugins/QtProject
|
|
|
|
# run qmake, make
|
|
qmake CONFIG+=debug IDE_BUILD_TREE=$(readlink -f ..) ../../path/to/qtc/tests/valgrind
|
|
make
|