Skip to content
Rafael Oliveira edited this page Jan 31, 2016 · 13 revisions

Using Libraries

Libraries have to be added in a libraries element in your project's project.kha like so:

"libraries": [
    "Kha2D",
    "zBlend"
]

khamake will then search for these libraries in a 'Libraries' subdirectory inside of your project and in your local haxelib installation. When a specific library exists in both places, the library in the Libraries subdirectory will be preferred.

Creating Libraries

A library has it's own Sources folder where you can place Haxe sources. When your project also contains assets, it additionally needs a project.kha (that is then merged with the project's project.kha). When your project also contains native code, it needs a korefile.js file.

A minimal example library that will bring up a sharing dialog on iOS is available here.

Wrappers for native libraries

Some of these are ported from existing Haxe solutions(see repositories), some are made from scratch. A single library always aims to provide support for as much targets as possible while keeping the interface similar.

Others libraries and projects

We have a thread on the forum with a list of libraries of general use.

Clone this wiki locally