From 9f96d90426cafee0258fffebbd54e88d0bdfc8f7 Mon Sep 17 00:00:00 2001 From: Will Pearson Date: Wed, 17 Oct 2018 00:28:14 +0100 Subject: [PATCH] Fix indentation in readme --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 97e9cf9f..35157e4e 100644 --- a/README.md +++ b/README.md @@ -15,14 +15,14 @@ For more information, see ["What is openNURBS?"](https://developer.rhino3d.com/g 3. Create your C++ project that will use opennurbs. 4. In your project's stdafx.h, put the following lines: - ```cpp - // defining OPENNURBS_PUBLIC_INSTALL_DIR enables automatic linking using pragmas - #define OPENNURBS_PUBLIC_INSTALL_DIR "" - // uncomment the next line if you want to use opennurbs as a DLL - //#define OPENNURBS_IMPORTS - #include "/opennurbs_public.h" - ``` - Replace `` with the full path where you installed opennurbs using forward slashes as directory separators. + ```cpp + // defining OPENNURBS_PUBLIC_INSTALL_DIR enables automatic linking using pragmas + #define OPENNURBS_PUBLIC_INSTALL_DIR "" + // uncomment the next line if you want to use opennurbs as a DLL + //#define OPENNURBS_IMPORTS + #include "/opennurbs_public.h" + ``` + Replace `` with the full path where you installed opennurbs using forward slashes as directory separators. Please see ["Getting started"](https://developer.rhino3d.com/guides/opennurbs/getting-started/) for more information about openNURBS including supported compilers, build instructions, and a description of the examples.