Click here to Skip to main content
15,898,222 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
Hi!Can't find libfreerdp.dll, that realy work with this project - _https://github.com/FreeRDP/FreeRDP-Sharp . I have found libfreerdp.dll, but it doesn't contains functions freerdp_context_new , freerdp_connect and etc. that's need for this project.
Сan anybody help me? Thanks.
Posted
Updated 3-Jan-14 6:20am
v2

The only people who can help you with this are the people running the project on GitHub.
 
Share this answer
 
Comments
mrkondor 6-Aug-13 16:18pm    
But the author of this project didn't answer me.
Dave Kreskowiak 6-Aug-13 16:51pm    
What makes you think anyone here is going to know anything about that project, or have any experience with it to answer your question?

The chances of any one person using that library are pretty close to zero.

This is the problem you run into when using open source projects. If you run into a problem, chances are good you're going to be on your own, supporting yourself.
1. Get FreeRdp sources from Git
2. Found file MSVCRuntime.cmake in folder cmake
3. replace
From
SQL
if("${MSVC_RUNTIME}" STREQUAL "")
            set(MSVC_RUNTIME "dynamic")
        endif()

To
SQL
set(MSVC_RUNTIME "dynamic")

4. You will get several dlls in debug folder after build:
libfreerdp.dll,
libfreerdp-client.dll
libwfreerdp-client.dll
libwinpr.dll
5. Copy all of them to debug folder.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900