1
0
forked from 0ad/0ad
0ad/build/premake/pkgconfig
Itms 94db174b25 Fix the pkgconfig premake module when headers are force-included.
This fixes a bug with premake5 happening when using
--with-system-mozjs38.

Tested By: temple
Differential Revision: https://code.wildfiregames.com/D1028
This was SVN commit r20523.
2017-11-25 16:56:56 +00:00
..
pkgconfig.lua Fix the pkgconfig premake module when headers are force-included. 2017-11-25 16:56:56 +00:00
README.md Migrate to premake5, fixes #3729. 2017-10-30 13:52:05 +00:00

This premake module adds supports for pkgconfig.

It allows one to use the pkg-config command (or an alternative one like sdl2-config to determine the names of libraries to be passed to the linker.

The solution of putting directly the output (like "-Lxml2") into the linker options creates an inconsistency between libraries using pkgconfig and the libraries not using it.

We should always use premake's linkoptions to specify global options and links to specify libraries, in order to avoid ordering problems in the list of libraries statically linked.