From 23bc463ec96bfceade0f887f7643c16e2f6e9814 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 6 Jul 2018 13:20:39 -0400 Subject: [PATCH] CMakeLists: Uppercase "string" in deployment target setting for macOS The documentation for setting cache entries dicates that the type must either be BOOL, FILEPATH, PATH, STRING, or INTERNAL (with those exact casings). Also, given we properly case it in other places, this is just consistent. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c4af4e0f4..6f7f9a1992 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ set(CMAKE_OSX_ARCHITECTURES "x86_64") # This is inserted into the Info.plist as well. # Note that the SDK determines the maximum version of which optional # features can be used, not the minimum required version to run. -set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE string "") +set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "") project(dolphin-emu)