From 48ce9686954269a9e5062a6b0ea0b291291e6a6a Mon Sep 17 00:00:00 2001 From: David G Yu Date: Fri, 21 Dec 2012 11:53:08 -0800 Subject: [PATCH] Fixed some more markdown typos. --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d788e3a1..c527647f 100644 --- a/README.md +++ b/README.md @@ -153,13 +153,13 @@ and a CMake toolchain for iOS: You can then use CMake to configure and generate an Xcode project: -'''' +```` mkdir build-ios cd build-ios cmake -DCMAKE_TOOLCHAIN_FILE=[path to iOS.cmake] -GXcode .. xcodebuild -target install -configuration Debug -'''' +```` You can open the resulting Xcode project directly, or include as a sub-project in the Xcode project for your app. @@ -175,19 +175,19 @@ and a CMake toolchain for Android: You can then use CMake to configure and build OpenSubdiv: -'''' +```` mkdir build-ndk cd build-ndk cmake -DCMAKE_TOOLCHAIN_FILE=[path to android.cmake] -DLIBRARY_OUTPUT_PATH_ROOT=`pwd`/modules/OpenSubdiv .. make install -'''' +```` The resulting NDK module can be imported by other NDK modules by including it in your module search path: -'''' +```` export NDK_MODULE_PATH=[path to build-ndk/modules] -'''' +```` ## Wish List