forked from vsimon/webrtcbuilds
    
        
        - 
                Notifications
    
You must be signed in to change notification settings  - Fork 69
 
Home
        vsimon edited this page Dec 10, 2014 
        ·
        42 revisions
      
    Grab a prebuilt binary for your platform from releases and unzip it.
The Windows releases are built with Visual C++ 2013.
To compile a simple application, run the following command(s):
$ export PKG_CONFIG_PATH=<webrtcbuilds-folder>/lib/Release/pkgconfig
$ g++ -o test test.cpp $(pkg-config --cflags --libs --define-variable=prefix=<webrtcbuilds-folder> libwebrtc_full)
cl.exe test.cpp /DWEBRTC_WIN /I<webrtcbuilds-folder>\include /link <webrtcbuilds-folder>\lib\Release\webrtc_full.lib advapi32.lib secur32.lib winmm.lib ws2_32.lib 
where <webrtcbuilds-folder> is the extracted folder from the installation step.