mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-12 22:09:25 +08:00
[#11848] Compile and run test with gnome client
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user