Suppress policy message about automoc-ing generated files

This commit is contained in:
Berkus Decker 2017-12-03 19:23:58 +02:00 committed by Berkus Decker
parent cf7ca3df15
commit 53996d1983
1 changed files with 4 additions and 0 deletions

View File

@ -18,6 +18,10 @@ set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_AUTOMOC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
if (CMAKE_VERSION VERSION_GREATER 3.9)
cmake_policy(SET CMP0071 NEW)
endif()
# Needs OpenAL-SOFT
# Install via `brew install openal-soft` and configure with `env OPENALDIR=/usr/local/opt/openal-soft`
find_package(OpenAL REQUIRED)