mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
Split public and private stuff into their own sections and do parsing of libs in a helper function analog to the parse helper function for includes and document public funcions using LDoc. Finally make setting the static flag a function. Ref: #8135 Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com> |
||
|---|---|---|
| .. | ||
| pkgconfig.lua | ||
| README.md | ||
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.