I have created an app in which I want to integrate P2P with Relay server. So I am trying to use Coturn Master project.
I followed the steps below for creating Make File and successfully produced .a file from the CMake project.
In my Terminal from Mac OS, I used below commands.
cd Project Directory
./configure
Make file is generated after this command.
make
Which created a libturnclient.a
and turnutils_uclient
exe file.
Now I want to use this library in my iOS project.
I need a guidance about how to proceed ahead. As there is a C project already created in Coturn Master.
So how do I use that library and compile that Project from Coturn master to my iOS project?
Path in the project is https://github.com/coturn/coturn/tree/master/src/apps/uclient
If anyone has done work on this can guide me.
Thanks in advance.