You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -15,19 +26,14 @@ Crossplatform all-in-one INI-file parser, written on C++ with STL
15
26
- Supports multilines
16
27
- Loads & saves comments
17
28
- MIT license
18
-
29
+
19
30
## Usage
20
31
21
-
Include provided iniparser.hpp to your C++ project and that is all
22
-
Usage information can be found on project's GitHub page
23
-
Look in test_app.cpp for different ways of using Leksys' IniParser
24
-
For testing purposes you can compile provided test application (see next section)
32
+
Include provided iniparser.hpp to your C++ project and that is all. Look in test_app.cpp for different ways of using Leksys' IniParser. For testing purposes you can compile provided test application (see next section)
25
33
26
34
## Building Test Application
27
35
28
-
You need to install CMake before building test_app
You need to install CMake before building test_app. CMake binary for your platform can be found at: http://www.cmake.org/cmake/resources/software.html
31
37
32
38
### POSIX (Linux, QNX, FreeBSD, MacOS)
33
39
@@ -39,10 +45,7 @@ $ make
39
45
40
46
### Windows
41
47
42
-
Use cmake-gui application for building project files for your IDE (currently supported: Visual Studio, Borland C++, CodeBlocks (MinGW), Eclipse (MinGW)).
43
-
44
-
Under QtCreator (v. 2.2.1) you can open Cmake projects directly from the IDE (File -> Open Project)
45
-
48
+
Use cmake-gui application for building project files for your IDE.
46
49
Alternatively, if you want to build project for Visual Studio, you can do it directly from the console in true-Linux style =):
47
50
48
51
```cmd
@@ -51,13 +54,16 @@ $ cmake <this_file_dir>
51
54
$ %VS90COMNTOOLS%\vsvars32.bat
52
55
$ nmake
53
56
```
54
-
55
-
Note, that if you have Visual Studio 10.0 (2010) environment variable will
56
-
be %VS100COMNTOOLS% and so on.
57
+
Note, that for Visual Studio 10.0 (2010) environment variable will be %VS100COMNTOOLS% and so on.
57
58
58
59
## Running Test Application
59
60
60
61
1. Simply start application and ensure, that 10 first tests pass.
0 commit comments