mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 12:14:36 +03:00
spelling fixes
This commit is contained in:
@@ -6,7 +6,7 @@ toc::[]
|
||||
|
||||
# Introduction
|
||||
|
||||
This example shows a common method to set the C++ Standard. This can be used with most versions of CMake. However, if you are targetting a recent version of CMake there are more convenient methods available.
|
||||
This example shows a common method to set the C++ Standard. This can be used with most versions of CMake. However, if you are targeting a recent version of CMake there are more convenient methods available.
|
||||
|
||||
The files in this tutorial are below:
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ project (hello_cpp11)
|
||||
# Add an executable
|
||||
add_executable(hello_cpp11 main.cpp)
|
||||
|
||||
# set the C++ standard to the approriate standard for using auto
|
||||
# set the C++ standard to the appropriate standard for using auto
|
||||
target_compile_features(hello_cpp11 PUBLIC cxx_auto_type)
|
||||
|
||||
# Print the list of known compile features for this version of CMake
|
||||
|
||||
Reference in New Issue
Block a user