Fixing cmake command format

This commit is contained in:
Kushal K S V S 2018-03-23 13:12:07 +05:30
parent 34e467332b
commit e1122047ae
1 changed files with 2 additions and 2 deletions

View File

@ -26,11 +26,11 @@
# #
# For a dynamic library, use # For a dynamic library, use
# #
# cmake <path-to-freetype2-src-dir> -D BUILD_SHARED_LIBS:BOOL=true # cmake -D BUILD_SHARED_LIBS:BOOL=true <path-to-freetype2-src-dir>
# #
# For a framework on OS X, use # For a framework on OS X, use
# #
# cmake <path-to-freetype2-src-dir> -D BUILD_FRAMEWORK:BOOL=true -G Xcode # cmake -D BUILD_FRAMEWORK:BOOL=true -G Xcode <path-to-freetype2-src-dir>
# #
# instead. # instead.
# #