From a2d4db575f4caa1866b56471fc7cf11992f53631 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 22 Feb 2017 11:39:23 -0500 Subject: [PATCH] CMakeLists: Drop FATAL_ERROR from cmake_minimum_required This is ignored by CMake 2.6 and higher. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 95a48c28..5be29e89 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.2 FATAL_ERROR) +cmake_minimum_required(VERSION 3.2) project(dynarmic CXX) # Determine if we're built as a subproject (using add_subdirectory)