Skip to content
forked from dmllr/webrtc

Build WebRTC from source using CMake

License

Notifications You must be signed in to change notification settings

jkernsva/webrtc

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WebRTC cmake script

This repository is a wrapper of official WebRTC repository made to be built from source using CMake.

Supported platforms:

  • MAC
  • POSIX
  • (probably) Windows

How to use

Usual way

  1. Clone https://github.com/dmllr/webrtc.git repository or add it as submodule
  2. In your CMakeLists.txt add
add_subdirectory("<path to folder contains this file>")
target_include_directories(your_shiny_target
    PRIVATE
    ${webrtc_source_path}
)
target_link_libraries(your_shiny_target
    webrtc
)

Alternatively

  1. Using cmake/import_remote.cmake from this repository do
include(import_remote.cmake)
import_remote("https://github.com/dmllr/webrtc.git" TAG "master" ALIAS webrtc)
target_include_directories(your_shiny_target
    PRIVATE
    ${webrtc_source_path}
)
target_link_libraries(your_shiny_target
    webrtc
)

About

Build WebRTC from source using CMake

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CMake 100.0%