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.
This commit is contained in:
Lioncash 2018-07-06 13:20:39 -04:00
parent 904057e611
commit 23bc463ec9
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7

View File

@ -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)