mirror of
https://github.com/UltraCoderRU/libwebrtc.git
synced 2026-01-28 11:15:13 +00:00
17 lines
340 B
CMake
17 lines
340 B
CMake
cmake_minimum_required(VERSION 3.3)
|
|
project(libwebrtc)
|
|
|
|
#
|
|
# Allow the use of IN_LIST operand
|
|
cmake_policy(SET CMP0057 NEW)
|
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH}
|
|
${CMAKE_SOURCE_DIR}/CMakeModules)
|
|
|
|
include(FindLibraries)
|
|
include(Version)
|
|
include(Options)
|
|
include(TargetOsAndCpu)
|
|
|
|
add_subdirectory(Targets)
|
|
export(PACKAGE LibWebRTC)
|