Fix indentation in readme

This commit is contained in:
Will Pearson
2018-10-17 00:28:14 +01:00
committed by GitHub
parent efe48fff41
commit 9f96d90426

View File

@@ -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. 3. Create your C++ project that will use opennurbs.
4. In your project's stdafx.h, put the following lines: 4. In your project's stdafx.h, put the following lines:
```cpp ```cpp
// defining OPENNURBS_PUBLIC_INSTALL_DIR enables automatic linking using pragmas // defining OPENNURBS_PUBLIC_INSTALL_DIR enables automatic linking using pragmas
#define OPENNURBS_PUBLIC_INSTALL_DIR "<MY_INSTALLPATH>" #define OPENNURBS_PUBLIC_INSTALL_DIR "<MY_INSTALLPATH>"
// uncomment the next line if you want to use opennurbs as a DLL // uncomment the next line if you want to use opennurbs as a DLL
//#define OPENNURBS_IMPORTS //#define OPENNURBS_IMPORTS
#include "<MY_INSTALLPATH>/opennurbs_public.h" #include "<MY_INSTALLPATH>/opennurbs_public.h"
``` ```
Replace `<MY_INSTALLPATH>` with the full path where you installed opennurbs using forward slashes as directory separators. Replace `<MY_INSTALLPATH>` 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. 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.