Skip to content

Latest commit

 

History

History
 
 

conan-freetype

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

conan-freetype

conan recipes for freetype.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Optionals prerequisites for linux

  • zlib : A massively spiffy yet delicately unobtrusive compression library.
  • bzip2 : A free and open-source file compression program that uses the Burrows–Wheeler algorithm.
  • libpng : The official PNG reference library.
  • harfbuzz : A text shaping engine.

Generation

Generate using conan: conan create . <USER>/<CHANNEL> [-o OPTIONS].

USER:
	This term in a Conan reference is basically a namespace to avoid collisions of libraries with the same
	name and version in the local cache and in the same remote. This field is usually populated with the
	author’s name of the package recipe (which could be different from the author of the library itself)
	or with the name of the organization creating it.

CHANNEL:
	Normally, package creators use `testing` when developing a recipe (e.g. it compiles only in few
	configurations) and `stable` when the recipe is ready enough to be used (e.g. it is built and tested
	in a wide range of configurations).

OPTIONS: 
	- freetype:shared={'True'|'False'}
		Set to 'True' to build shared library, default to 'False'.
	- freetype:fPIC={'True'|'False'}
		Set to 'True' to build position independent code, default to 'True'.
	- freetype:with_zlib={'True'|'False'}
	    Set to 'True' to build zlib dependent component, default to 'False'.
	- freetype:with_bzip2={'True'|'False'}
	    Set to 'True' to build bzip2 dependent component, default to 'False'.
	- freetype:with_png={'True'|'False'}
	    Set to 'True' to build libpng dependent component, default to 'False'.
	- freetype:with_harfbuzz={'True'|'False'}
	    Set to 'True' to build harfbuzz dependent component, default to 'False'.

Authors

License

This project is licensed under the GNU Lesser General Public License v3.0 - see the LICENSE.md file for details.