[#11848] Compile and run test with gnome client

This commit is contained in:
Emmanuel Milou
2012-06-21 15:34:59 -04:00
parent da949d9c5f
commit 80bb3a66dd
5 changed files with 28 additions and 5 deletions

View File

@ -120,11 +120,6 @@ function build_daemon {
make clean
# Compile src code
make -j
# Generate documentation
make doc
if [ $DOXYGEN == 1 ]; then
gen_doxygen
fi
# Remove the previous XML test file
rm -rf $XML_RESULTS
# Compile unit tests
@ -133,6 +128,23 @@ function build_daemon {
}
function build_gnome {
# Compile the daemon
pushd daemon
make distclean
./autogen.sh
# Compile pjproject first
pushd libs/pjproject
./autogen.sh
./configure
make && make dep
popd
./configure --prefix=/usr
make clean
# Compile src code
make -j
sudo make install
popd
# Compile the plugins
pushd plugins
make distclean