Merge pull request #1414 from admshao/remove-cmp0072-warning

cmake: Prevent policy CMP0072 warning
master
Jim 2018-08-17 15:05:06 -07:00 committed by GitHub
commit 329efe4024
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,10 @@
cmake_minimum_required(VERSION 2.8.12)
if (UNIX AND POLICY CMP0072)
# In case of both legacy and glvnd OpenGL libraries found. Prefer GLVND
cmake_policy(SET CMP0072 NEW)
endif()
project(obs-studio)
option(BUILD_CAPTIONS "Build captions" FALSE)