How can I compile JRTP (Jori Real Time Transfer protocol) Library?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The best way to compile JRTP lib is using CMake. The procedure is described bellow.
**1. Open the Cmake Gui version.
Select your source directory such as C:/project/jrtp-3.9.1
Select your build dirctory such as C:/project/jrtp-3.9.1/build
Press the Add Entry button and add a prefix CMAKE_INSTALL_PREFIX and select the path of
the library such as C:/local.
Then press the config button.
Then go to the build directory and you will see a .sln file. build it using Visual Studio and your JRTP static lib is ready.
If you want a dynamic library then before configuring again in the CMake Gui uncheck the JRTP_COMPILE_STATIC.
courtesy: Jori Liesenborgs (Creator of the JRTP library).