From b5aa3fbf3ecdf2eaa5cebbc7701dbd1a5f515c8a Mon Sep 17 00:00:00 2001 From: reuk Date: Fri, 17 Apr 2020 17:33:55 +0100 Subject: [PATCH] CMake: Fix documentation --- examples/CMake/readme.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/examples/CMake/readme.md b/examples/CMake/readme.md index 32436d6b39..f1ba08f6ed 100644 --- a/examples/CMake/readme.md +++ b/examples/CMake/readme.md @@ -188,12 +188,16 @@ attributes directly to these creation functions, rather than adding them later. - May be either TRUE or FALSE. Adds the appropriate entries to an iOS app's entitlements. - `IPHONE_SCREEN_ORIENTATIONS` - - May be, `portrait`, `landscape`, or both (separated by a space). Adds the appropriate entries to - an iPhone app's Info.plist. + - May be one or more of `UIInterfaceOrientationUnknown`, `UIInterfaceOrientationPortrait`, + `UIInterfaceOrientationPortraitUpsideDown`, `UIInterfaceOrientationLandscapeLeft`, or + `UIInterfaceOrientationLandscapeRight`. These should be surrounded in double-quotes and + separated by semi-colons (`;`). Adds appropriate entries to an iOS app's plist. - `IPAD_SCREEN_ORIENTATIONS` - - May be, `portrait`, `landscape`, or both (separated by a space). Adds the appropriate entries to - an iPad app's Info.plist. + - May be one or more of `UIInterfaceOrientationUnknown`, `UIInterfaceOrientationPortrait`, + `UIInterfaceOrientationPortraitUpsideDown`, `UIInterfaceOrientationLandscapeLeft`, or + `UIInterfaceOrientationLandscapeRight`. These should be surrounded in double-quotes and + separated by semi-colons (`;`). Adds appropriate entries to an iOS app's plist. - `LAUNCH_STORYBOARD_FILE` - A custom launch storyboard file to use on iOS. If not supplied, a default storyboard will be