Silence cmake 3.10 warnings

Explicitly turning of automoc and friends for every single auto
generated file seems a rather dumb approach...

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2017-12-24 11:34:43 -08:00
parent 36c8a7e4ca
commit 795f6e24ea

View file

@ -6,6 +6,9 @@
project(Subsurface)
cmake_minimum_required(VERSION 2.8.11)
# don't process generated files
cmake_policy(SET CMP0071 OLD)
# global settings
set(CMAKE_AUTOMOC ON)