Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ jobs:

- name: Install Haxe dependencies
run: |
sudo apt-get install -qq libgl1-mesa-dev libglu1-mesa-dev libpulse-dev g++ g++-multilib gcc-multilib libasound2-dev libx11-dev libxext-dev libxi-dev libxrandr-dev libxinerama-dev
sudo apt-get update
sudo apt-get install -qq gcc-12 g++-12 libstdc++-12-dev libgl1-mesa-dev libglu1-mesa-dev libpulse-dev g++-12-multilib gcc-12-multilib libasound2-dev libx11-dev libxext-dev libxi-dev libxrandr-dev libxinerama-dev
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 100
sudo update-alternatives --config g++
haxelib git hxcpp https://github.com/FunkinCrew/hxcpp --quiet
haxelib install format --quiet
haxelib install hxp --quiet
Expand Down
14 changes: 10 additions & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,17 @@
path = project/lib/mbedtls
url = https://github.com/Mbed-TLS/mbedtls
shallow = true
[submodule "project/lib/mojoal"]
path = project/lib/mojoal
url = https://github.com/icculus/mojoAL
shallow = true
[submodule "project/lib/hashlink"]
path = project/lib/hashlink
url = https://github.com/HaxeFoundation/hashlink
shallow = true
[submodule "project/lib/dr_libs"]
path = project/lib/dr_libs
url = https://github.com/mackron/dr_libs
shallow = true
[submodule "project/lib/opusfile"]
path = project/lib/opusfile
url = https://github.com/xiph/opusfile
[submodule "project/lib/opus"]
path = project/lib/opus
url = https://github.com/xiph/opus
10 changes: 5 additions & 5 deletions NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ This product bundles cairo 1.15.2, which is available under an
This product bundles libcurl 7.56.1, which is available under an
"MIT/X derivate" license. For details, see [project/lib/curl/](project/lib).

This product bundles dr_libs (dr_flac 0.13.3, dr_mp3 0.7.4, dr_wav 0.14.5), which is available under an
"MIT No Attribution" license. For details, see [project/lib/dr_libs/](project/lib).

This product bundles efsw, which is available under an
"MIT" license. For details, see [project/lib/efsw/](project/lib).

Expand All @@ -34,12 +37,9 @@ public domain. For details, see [project/lib/lzma/](project/lzma).
This product bundles mbedTLS 2.6.0, which is available under an
"Apache 2.0" license. For details, see [project/lib/mbedtls/](project/lib).

This product bundles OpenAL-Soft 1.19.0, which is available under an
This product bundles OpenAL-Soft 1.25.1, which is available under an
"LGPLv2" license. For details, see [project/lib/openal/](project/lib).

_OpenAL-Soft is only included in dynamically-linked builds, it is excluded
from Lime static builds in order to preserve Lime's permissive nature._

This product bundles pixman 0.32.8, which is available under an
"MIT" license. For details, see [project/lib/pixman/](project/lib).

Expand Down Expand Up @@ -95,7 +95,7 @@ _The following are not embedded in Lime applications directly, but are used
as dependencies for web-based builds. Their licensing does not affect products
created with Lime._

This product bundles howler.js 2.1.1, which is available under an
This product bundles howler.js 2.2.4 (Modified), which is available under an
"MIT" license. For details, see [dependencies/howler.min.js](dependencies/howler.min.js).

This product bundles FileSaver.js 1.3.3, which is available under an
Expand Down
Loading