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
Copy file name to clipboardExpand all lines: README.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,12 +64,27 @@ Using this sample is only recommended if you are already somewhat familiar with
64
64
<sup>1</sup> Note that `-version` (with only a single hyphen) would be interpreted as the option `-v` with the argument `ersion`.
65
65
66
66
## Integration
67
-
*ProgramOptions.hxx* is very easy to integrate. After downloading the header file, all that it takes is a simple:
67
+
*ProgramOptions.hxx* is very easy to integrate. After downloading the header file from the ```include``` folder and putting it into your project folder, all it takes is a simple:
68
68
```cpp
69
69
#include"ProgramOptions.hxx"
70
70
```
71
71
Don't forget to compile with C++11 enabled, i.e. with `-std=c++11`.
72
72
73
+
### git
74
+
If you want to integrate *ProgramOptions.hxx* into your project that uses [git](https://git-scm.com/), you can write:
You must replace ```/third_party/ProgramOptions.hxx``` by the correct path and ```YourExecutable``` by the targets that use *ProgramOptions.hxx*.
87
+
73
88
## Usage
74
89
Using *ProgramOptions.hxx* is straightforward; we'll explain it by means of practical examples. All examples shown here and more can be found in the [/examples](examples) directory, all of which are well-documented.
0 commit comments