mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-18 06:13:55 -07:00
Markdown linter requires a heading and the heading not ending in a dot, make the readmes not trigger a violation. Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
561 B
561 B
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.