Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 836 Bytes

README-mac.md

File metadata and controls

43 lines (34 loc) · 836 Bytes

YateClient on macOS

Install Qt5 from MacPorts

# Using MacPorts install Qt5 and OpenSSL
sudo port install qt5 openssl
# Add /opt/local/libexec/qt4/bin to your shell env PATH for qmake and moc
export PATH="/opt/local/libexec/qt5/bin:$PATH"

RECOMMENDED: Use Qmake to build YateClient

Build

./autogen.sh 
./configure  # create yateversn.h
make yatepaths.h  # create yatepaths.h
qmake -o Makefile.qmake Yate.pro  # generate Makefile.qmake
make -f Makefile.qmake

Run

cd build
DYLD_LIBRARY_PATH=. ./YateClient.app/Contents/MacOS/YateClient -e ../share -c client-conf.d

Traditional Yate Makefile

./autogen.sh
./configure
make

Run

cd clients
./run-qt4