You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
linphone-tutorials/qt/00_HelloWorld
Ghislain MARY 53a8bbba8f
Add 00_HelloWorld qt tutorial.
5 months ago
..
src Add 00_HelloWorld qt tutorial. 5 months ago
ui Add 00_HelloWorld qt tutorial. 5 months ago
.gitignore Add 00_HelloWorld qt tutorial. 5 months ago
CMakeLists.txt Add 00_HelloWorld qt tutorial. 5 months ago
README.md Add 00_HelloWorld qt tutorial. 5 months ago
resources.qrc Add 00_HelloWorld qt tutorial. 5 months ago

README.md

Hello World tutorial

The purpose of this tutorial is to explain how to build a Qt app depending on the Linphone SDK and to create the Core object that all our APIs depends on.

The user interface will only display the Core's version, but in the next tutorial you will learn how to use it to login your SIP account.

How to build

In the following instructions, replace by the real path where your SDK is located, e.g. ~/projects/linphone-sdk/build-default/linphone-sdk/desktop/

mkdir build
cd build
cmake .. -DCMAKE_PREFIX_PATH=<PATH-TO-SDK>
cmake --build .