Miku AuahDark 722f883661 Remove Oboe from sources.
LOVE Android uses Oboe from Google prefab.
2022-05-28 17:18:50 +08:00
2022-05-28 17:18:50 +08:00
2020-10-15 18:09:54 +08:00
2020-01-12 18:54:00 -04:00
2013-09-26 19:53:18 +02:00
2022-05-28 17:18:50 +08:00
2022-02-05 12:02:25 +08:00

Megasource is a CMake-buildable collection of all LÖVE dependencies.

It is currently only officially supported on Windows, but may also work on macOS. It could certainly also work on Linux, but good package managers makes megasource less relevant there.

Prerequisites

Building

To build just the dependencies:

$ git clone https://github.com/love2d/megasource megasource
$ cd megasource
$ cmake -H. -Bbuild
$ cmake --build build --target megatest --config Release

... or you can open the solution file in Visual Studio and build from there instead of invoking cmake --build.

Note, that -H had been replaced in CMake 3.13 with -S.

If you want to build LÖVE, clone LÖVE into the libs folder. Megasource will automatically look for it there. E.g.:

$ git clone https://github.com/love2d/megasource megasource
$ cd megasource
$ git clone https://github.com/love2d/love libs/love
$ cmake -H. -Bbuild
$ cmake --build build --target love/love --config Release

The binaries can be found in build/love/Release.

If you want to build the installer, replace the previous build command with:

$ cmake --build build --target PACKAGE --config Release

A zip with the binaries and the installer will appear in build.

S
Description
No description provided
Readme 164 MiB
Languages
C 68.1%
C++ 14.7%
HTML 5.4%
Shell 2.4%
Objective-C 2%
Other 6.8%