amichaeltm / BDSup2SubPlusPlus

Port of the original BDSup2Sub to C++ and Qt.
Apache License 2.0
30 stars 6 forks source link

meson file missed in github? #28

Open Randrianasulu opened 1 year ago

Randrianasulu commented 1 year ago

without this file I do not know how to build this project on Linux.

Copied one from https://github.com/TheGreatMcPain/BDSup2SubPlusPlus.git (as used by Arch linux AUR pkgbuild)

and build seems to work (create build dir, from there call "meson .." and then ninja)

TheGreatMcPain commented 1 year ago

I know this is a few months old, but if you still need this answered. This is how your supposed to compile this without the meson.build using qmake.

  1. cd into the src directory.
  2. Run qmake bdsup2sub++.pro (qmake might be installed as qmake5)
  3. Finally, run make -j<number of jobs>

For the record I only made my fork, so that I can turn bdsup2sub++ into a "library" for a C++ project I was working on a few years ago. I really should of put a disclaimer telling people not to use it, since I never intended to maintain it outside of making it work with my project.