Skip to content

Commit ec0e28a

Browse files
committed
cmake: iOS.cmake: Fix typos
1 parent 0319cff commit ec0e28a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cmake/iOS.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
# SIMULATOR - used to build for the Simulator platforms, which have an x86 arch.
1111
#
1212
# CMAKE_IOS_DEVELOPER_ROOT = automatic(default) or /path/to/platform/Developer folder
13-
# By default this location is automatcially chosen based on the IOS_PLATFORM value above.
13+
# By default this location is automatically chosen based on the IOS_PLATFORM value above.
1414
# If set manually, it will override the default location and force the user of a particular Developer Platform
1515
#
1616
# CMAKE_IOS_SDK_ROOT = automatic(default) or /path/to/platform/Developer/SDKs/SDK folder
17-
# By default this location is automatcially chosen based on the CMAKE_IOS_DEVELOPER_ROOT value.
17+
# By default this location is automatically chosen based on the CMAKE_IOS_DEVELOPER_ROOT value.
1818
# In this case it will always be the most up-to-date SDK found in the CMAKE_IOS_DEVELOPER_ROOT path.
1919
# If set manually, this will force the use of a specific SDK version
2020

@@ -100,7 +100,7 @@ if(IOS_DEPLOYMENT_TARGET)
100100
set(XCODE_IOS_PLATFORM_VERSION_FLAGS "-m${XCODE_IOS_PLATFORM}-version-min=${IOS_DEPLOYMENT_TARGET}")
101101
endif()
102102

103-
# Hidden visibilty is required for cxx on iOS
103+
# Hidden visibility is required for cxx on iOS
104104
set(CMAKE_C_FLAGS_INIT "${XCODE_IOS_PLATFORM_VERSION_FLAGS}")
105105
set(CMAKE_CXX_FLAGS_INIT "${XCODE_IOS_PLATFORM_VERSION_FLAGS} -fvisibility-inlines-hidden")
106106

0 commit comments

Comments
 (0)