IanFinlayson / png2gba

A utility to convert PNG images into C arrays as required fro GBA programming
MIT License
18 stars 6 forks source link

fix(build): Detect OS and set linker flags accordingly #3

Closed Teufelchen1 closed 1 year ago

Teufelchen1 commented 1 year ago

Hi!

Sadly, PR #1 introduced a regression where building is no longer possible under linux as -largp is not known. This PR fixes this by adding an OS switch for this flag.

Before merging, please check if macOS still builds!

Note: this quick OS checks breaks building on Windows because of the uname dep.

IanFinlayson commented 1 year ago

Great, thanks!