Skip to content

Commit

Permalink
Keep tipi.build message in README but delete other files
Browse files Browse the repository at this point in the history
Thanks @pysco68.

See #136
  • Loading branch information
benhoyt committed Apr 15, 2022
1 parent f7f69c6 commit 4bd3261
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,22 @@ Some differences between inih and Python's [ConfigParser](http://docs.python.org
* In case you use inih as a Meson subproject, you can use the `inih_dep` and `INIReader_dep` dependency variables. You might want to set `default_library=static` and `distro_install=false` for the subproject. An official Wrap is provided on [WrapDB](https://wrapdb.mesonbuild.com/inih).
* For packagers: if you want to tag the version in the pkg-config file, you will need to do this downstream. Add `version : '<version_as_int>',` after the `license` tag in the `project()` function and `version : meson.project_version(),` after the `soversion` tag in both `library()` functions.

## Using inih with tipi.build

`inih` can be easily used in [tipi.build](https://tipi.build) projects simply by adding the following entry to your `.tipi/deps`:

```json
{
"benhoyt/inih": { "@": "r55" }
}
```

The required include path in your project is:

```c
#include <ini.h>
```

## Building from vcpkg ##

You can build and install inih using [vcpkg](https://github.com/microsoft/vcpkg/) dependency manager:
Expand Down

0 comments on commit 4bd3261

Please sign in to comment.