diff --git a/Using-the-library-without-Arduino.md b/Using-the-library-without-Arduino.md index ce7e312..935c379 100644 --- a/Using-the-library-without-Arduino.md +++ b/Using-the-library-without-Arduino.md @@ -1,34 +1,8 @@ -This library is primarily design to be used with the Arduino IDE and therefore has a simplified setup procedure for that environment. -If you use the Arduino IDE, please read [Using the library with Arduino](Using the library with Arduino). +ArduinoJson is a header-only library, so you just need to [download](https://github.com/bblanchon/ArduinoJson/releases) the package and unzip it in a convenient location. -However, it can be used without Arduino IDE with very little effort. +Then add the `include/` folder to your compiler's or your IDE's include directories. -## Compiling the library - -Step 1: Download source code: - - git clone https://github.com/bblanchon/ArduinoJson.git - -Step 2: Generate the `Makefile` for your environment - - cd ArduinoJson - cmake . - -Step 3: Build - - make - -## File paths - -Assuming you installed the library into ``, you need to add: - -1. `/include` to your include path -2. `/lib` to your library path - - ----------- - -You are now ready to follow the instructions: +See next: 1. [Parsing JSON](Decoding-JSON) 2. [Generating JSON](Encoding-JSON) \ No newline at end of file