From c2f2cf5757c9fa1f0a5e336392265f4d0a1ac975 Mon Sep 17 00:00:00 2001 From: triton Date: Wed, 14 Aug 2013 00:39:00 +0100 Subject: [PATCH] Move the getting started section to the beginning. --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 8428382a..8556ec64 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,18 @@ This tool allows you to generate .NET bindings that wrap C/C++ code allowing interoperability with managed languages. This can be useful if you have an existing native codebase and want to add scripting support, or want to consume an existing native library in your managed code. +## Getting started + +Since binary releases have not been provided yet, you will have to compile the project and dependencies manually (LLVM and Clang). + +The documentation is still a work-in-progress, please see the following resources for more information: + +[Getting Started](docs/GettingStarted.md) + +[User's Manual](docs/UsersManual.md) + +[Developer's Manual](docs/DevManual.md) + ## Why reinvent the wheel? There are not many automated binding tools around, the only real alternative is SWIG. So how is it different from SWIG? @@ -21,18 +33,6 @@ It is being used to bind "real-world" complex codebases successfully, so give it Since C and C++ provide such a wide array of features I'm sure there's still tonnes of bugs and unsupported edge cases, but give and try and report any bugs you find and I'll try to fix them ASAP. -## Getting started - -Since binary releases have not been provided yet, you will have to compile the project and dependencies manually (LLVM and Clang). - -The documentation is still a work-in-progress, please see the following resources for more information: - -[Getting Started](docs/GettingStarted.md) - -[User's Manual](docs/UsersManual.md) - -[Developer's Manual](docs/DevManual.md) - ## Similiar Tools