Fixed typos

This commit is contained in:
Davis King 2017-12-25 08:50:34 -05:00
parent cf0b3b94d5
commit c9faacce29
1 changed files with 4 additions and 4 deletions

View File

@ -65,10 +65,10 @@ target_link_libraries(assignment_learning_ex dlib::dlib)
# cmake --build . --config Release
#
# The cmake .. command looks in the parent folder for a file named
# CMakeLists.txt, reads it, sets up everything needed to build program. Also,
# note that CMake can generate Visual Studio or XCode project files. So if
# instead you had written:
# mkdir build
# CMakeLists.txt, reads it, and sets up everything needed to build program.
# Also, note that CMake can generate Visual Studio or XCode project files. So
# if instead you had written:
# cd build
# cmake .. -G Xcode
#
# You would be able to open the resulting Xcode project and compile and edit